@@ -26,7 +26,7 @@ public class AttributeValueCollectionTest {
2626 /// Creates a new topic and ensures that the key can be returned as an attribute.
2727 /// </summary>
2828 [ TestMethod ]
29- public void AttributeValueCollection_GetValueTest ( ) {
29+ public void GetValue ( ) {
3030 var topic = TopicFactory . Create ( "Test" , "Container" ) ;
3131 Assert . AreEqual < string > ( "Test" , topic . Attributes . GetValue ( "Key" ) ) ;
3232 }
@@ -38,7 +38,7 @@ public void AttributeValueCollection_GetValueTest() {
3838 /// Ensures that integer values can be set and retrieved as expected.
3939 /// </summary>
4040 [ TestMethod ]
41- public void AttributeValueCollection_GetIntegerTest ( ) {
41+ public void GetInteger ( ) {
4242
4343 var topic = TopicFactory . Create ( "Test" , "Container" ) ;
4444
@@ -60,7 +60,7 @@ public void AttributeValueCollection_GetIntegerTest() {
6060 /// Ensures that integer values can be set and retrieved as expected.
6161 /// </summary>
6262 [ TestMethod ]
63- public void AttributeValueCollection_GetDateTimeTest ( ) {
63+ public void GetDateTime ( ) {
6464
6565 var topic = TopicFactory . Create ( "Test" , "Container" ) ;
6666 var dateTime1 = new DateTime ( 1976 , 10 , 15 ) ;
@@ -84,7 +84,7 @@ public void AttributeValueCollection_GetDateTimeTest() {
8484 /// Ensures that boolean values can be set and retrieved as expected.
8585 /// </summary>
8686 [ TestMethod ]
87- public void AttributeValueCollection_GetBooleanTest ( ) {
87+ public void GetBoolean ( ) {
8888
8989 var topic = TopicFactory . Create ( "Test" , "Container" ) ;
9090
@@ -110,7 +110,7 @@ public void AttributeValueCollection_GetBooleanTest() {
110110 /// Creates a new topic and requests an invalid attribute; ensures falls back to the default.
111111 /// </summary>
112112 [ TestMethod ]
113- public void AttributeValueCollection_DefaultValueTest ( ) {
113+ public void DefaultValue ( ) {
114114 var topic = TopicFactory . Create ( "Test" , "Container" ) ;
115115 Assert . AreEqual < string > ( "Foo" , topic . Attributes . GetValue ( "InvalidAttribute" , "Foo" ) ) ;
116116 }
@@ -122,7 +122,7 @@ public void AttributeValueCollection_DefaultValueTest() {
122122 /// Sets a custom attribute on a topic and ensures it can be retrieved.
123123 /// </summary>
124124 [ TestMethod ]
125- public void AttributeValueCollection_SetValueTest ( ) {
125+ public void SetValue ( ) {
126126 var topic = TopicFactory . Create ( "Test" , "Container" ) ;
127127 topic . Attributes . SetValue ( "Foo" , "Bar" ) ;
128128 Assert . AreEqual < string > ( "Bar" , topic . Attributes . GetValue ( "Foo" ) ) ;
@@ -135,7 +135,7 @@ public void AttributeValueCollection_SetValueTest() {
135135 /// Modifies the value of a custom attribute on a topic and ensures it is marked as IsDirty.
136136 /// </summary>
137137 [ TestMethod ]
138- public void AttributeValueCollection_SetValue_IsDirtyTest ( ) {
138+ public void SetValue_IsDirtyTest ( ) {
139139
140140 var topic = TopicFactory . Create ( "Test" , "Container" ) ;
141141
@@ -159,7 +159,7 @@ public void AttributeValueCollection_SetValue_IsDirtyTest() {
159159 /// retrieved.
160160 /// </summary>
161161 [ TestMethod ]
162- public void AttributeValueCollection_SetValue_BackdoorTest ( ) {
162+ public void SetValue_BackdoorTest ( ) {
163163
164164 var topic = TopicFactory . Create ( "Test" , "Container" ) ;
165165
@@ -179,7 +179,7 @@ public void AttributeValueCollection_SetValue_BackdoorTest() {
179179 /// </summary>
180180 [ TestMethod ]
181181 [ ExpectedException ( typeof ( TargetInvocationException ) , "The topic allowed a key to be set via a back door, without routing it through the Key property." ) ]
182- public void AttributeValueCollection_EnforceBusinessLogicTest ( ) {
182+ public void EnforceBusinessLogic ( ) {
183183 var topic = TopicFactory . Create ( "Test" , "Container" ) ;
184184 topic . Attributes . SetValue ( "Key" , "# ?" ) ;
185185 }
@@ -192,7 +192,7 @@ public void AttributeValueCollection_EnforceBusinessLogicTest() {
192192 /// </summary>
193193 [ TestMethod ]
194194 [ ExpectedException ( typeof ( TargetInvocationException ) , "The topic allowed a key to be set via a back door, without routing it through the Key property." ) ]
195- public void AttributeValueCollection_EnforceBusinessLogic_BackdoorTest ( ) {
195+ public void EnforceBusinessLogic_Backdoor ( ) {
196196 var topic = TopicFactory . Create ( "Test" , "Container" ) ;
197197 topic . Attributes . Remove ( "Key" ) ;
198198 topic . Attributes . Add ( new AttributeValue ( "Key" , "# ?" ) ) ;
@@ -205,7 +205,7 @@ public void AttributeValueCollection_EnforceBusinessLogic_BackdoorTest() {
205205 /// Sets an attribute on the parent of a topic and ensures it can be retrieved using inheritance.
206206 /// </summary>
207207 [ TestMethod ]
208- public void AttributeValueCollection_InheritFromParentTest ( ) {
208+ public void InheritFromParent ( ) {
209209
210210 var topics = new Topic [ 8 ] ;
211211
@@ -230,7 +230,7 @@ public void AttributeValueCollection_InheritFromParentTest() {
230230 /// Establishes a long tree of derives topics, and ensures that inheritance will pursue no more than five hops.
231231 /// </summary>
232232 [ TestMethod ]
233- public void AttributeValueCollection_MaxHopsTest ( ) {
233+ public void MaxHops ( ) {
234234
235235 var topics = new Topic [ 8 ] ;
236236
0 commit comments