Skip to content

Commit 9d7b228

Browse files
committed
Revert: Renamed the view model for testing the AttributeValueDictionary
With the renaming of the `AttributeValueDictionary` back to `AttributeDictionary` (c0152cc), the test project's `AttributeValueDictionaryConstructorTopicViewModel` is now also renamed back to `AttributeDictionaryConstructorTopicViewModel`, thus reverting 4a7b9d8.
1 parent c0152cc commit 9d7b228

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

OnTopic.Tests/ViewModels/AttributeValueDictionaryConstructorTopicViewModel.cs renamed to OnTopic.Tests/ViewModels/AttributeDictionaryConstructorTopicViewModel.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,25 +15,25 @@ namespace OnTopic.Tests.ViewModels {
1515
/// <remarks>
1616
/// This is a sample class intended for test purposes only; it is not designed for use in a production environment.
1717
/// </remarks>
18-
public record AttributeValueDictionaryConstructorTopicViewModel: PageTopicViewModel {
18+
public record AttributeDictionaryConstructorTopicViewModel: PageTopicViewModel {
1919

2020
/*==========================================================================================================================
2121
| CONSTRUCTOR
2222
\-------------------------------------------------------------------------------------------------------------------------*/
2323
/// <summary>
24-
/// Initializes a new <see cref="AttributeValueDictionaryConstructorTopicViewModel"/> with an <paramref name="attributes"
24+
/// Initializes a new <see cref="AttributeDictionaryConstructorTopicViewModel"/> with an <paramref name="attributes"
2525
/// /> dictionary.
2626
/// </summary>
27-
/// <param name="attributes">An <see cref="AttributeValueDictionaryConstructorTopicViewModel"/> of attribute values.</param>
28-
public AttributeValueDictionaryConstructorTopicViewModel(AttributeDictionary attributes) : base(attributes) {
27+
/// <param name="attributes">An <see cref="AttributeDictionaryConstructorTopicViewModel"/> of attribute values.</param>
28+
public AttributeDictionaryConstructorTopicViewModel(AttributeDictionary attributes) : base(attributes) {
2929
Contract.Requires(attributes, nameof(attributes));
3030
MappedProperty = attributes.GetValue(nameof(MappedProperty));
3131
}
3232

3333
/// <summary>
34-
/// Initializes a new <see cref="AttributeValueDictionaryConstructorTopicViewModel"/> with no parameters.
34+
/// Initializes a new <see cref="AttributeDictionaryConstructorTopicViewModel"/> with no parameters.
3535
/// </summary>
36-
public AttributeValueDictionaryConstructorTopicViewModel() { }
36+
public AttributeDictionaryConstructorTopicViewModel() { }
3737

3838
/*==========================================================================================================================
3939
| PROPERTIES

0 commit comments

Comments
 (0)