@@ -87,15 +87,15 @@ public static TopicController GetTopicController(Topic topic) =>
8787 } ;
8888
8989 /*==========================================================================================================================
90- | TEST: INVALID CONTROLLER THROWS EXCEPTION
90+ | TEST: INVALID CONTROLLER TYPE THROWS EXCEPTION
9191 \-------------------------------------------------------------------------------------------------------------------------*/
9292 /// <summary>
9393 /// Ensures that a controller that doesn't derive from <see cref="TopicController"/> throws a <see
9494 /// cref="InvalidOperationException"/>.
9595 /// </summary>
9696 [ TestMethod ]
9797 [ ExpectedException ( typeof ( InvalidOperationException ) ) ]
98- public void InvalidController_Throws_Exception ( ) {
98+ public void InvalidControllerType_ThrowsException ( ) {
9999
100100 var validateFilter = new ValidateTopicAttribute ( ) ;
101101 var controller = new DummyController ( ) {
@@ -112,13 +112,13 @@ public void InvalidController_Throws_Exception() {
112112
113113 }
114114 /*==========================================================================================================================
115- | TEST: NULL TOPIC RETURNS NOT FOUND
115+ | TEST: NULL TOPIC: RETURNS NOT FOUND
116116 \-------------------------------------------------------------------------------------------------------------------------*/
117117 /// <summary>
118118 /// Ensures that a <see cref="NotFoundObjectResult"/> is thrown if the <see cref="TopicController.CurrentTopic"/> is null.
119119 /// </summary>
120120 [ TestMethod ]
121- public void NullTopic_Returns_NotFound ( ) {
121+ public void NullTopic_ReturnsNotFound ( ) {
122122
123123 var validateFilter = new ValidateTopicAttribute ( ) ;
124124 var controller = GetTopicController ( null ) ;
@@ -133,13 +133,13 @@ public void NullTopic_Returns_NotFound() {
133133 }
134134
135135 /*==========================================================================================================================
136- | TEST: DISABLED TOPIC RETURNS NOT AUTHORIZED
136+ | TEST: DISABLED TOPIC: RETURNS NOT AUTHORIZED
137137 \-------------------------------------------------------------------------------------------------------------------------*/
138138 /// <summary>
139139 /// Ensures that a <see cref="NotFoundObjectResult"/> is thrown if the <see cref="TopicController.CurrentTopic"/> is null.
140140 /// </summary>
141141 [ TestMethod ]
142- public void DisabledTopic_Returns_NotFound ( ) {
142+ public void DisabledTopic_ReturnsNotFound ( ) {
143143
144144 var validateFilter = new ValidateTopicAttribute ( ) ;
145145 var topic = TopicFactory . Create ( "Key" , "Page" ) ;
@@ -157,14 +157,14 @@ public void DisabledTopic_Returns_NotFound() {
157157 }
158158
159159 /*==========================================================================================================================
160- | TEST: TOPIC WITH URL RETURNS REDIRECT
160+ | TEST: TOPIC WITH URL: RETURNS REDIRECT
161161 \-------------------------------------------------------------------------------------------------------------------------*/
162162 /// <summary>
163163 /// Ensures that a <see cref="RedirectResult"/> is thrown if the <see cref="TopicController.CurrentTopic"/> contains
164164 /// a <c>Url</c> attribute.
165165 /// </summary>
166166 [ TestMethod ]
167- public void TopicWithUrl_Returns_Redirect ( ) {
167+ public void TopicWithUrl_ReturnsRedirect ( ) {
168168
169169 var validateFilter = new ValidateTopicAttribute ( ) ;
170170 var topic = TopicFactory . Create ( "Key" , "Page" ) ;
@@ -182,14 +182,14 @@ public void TopicWithUrl_Returns_Redirect() {
182182 }
183183
184184 /*==========================================================================================================================
185- | TEST: NESTED TOPIC RETURNS 403
185+ | TEST: NESTED TOPIC: RETURNS 403
186186 \-------------------------------------------------------------------------------------------------------------------------*/
187187 /// <summary>
188188 /// Ensures that a <see cref="StatusCodeResult"/> is thrown if the <see cref="TopicController.CurrentTopic"/> has a
189189 /// <see cref="ContentTypeDescriptor"/> of <c>List</c>.
190190 /// </summary>
191191 [ TestMethod ]
192- public void NestedTopic_Returns_403 ( ) {
192+ public void NestedTopic_Returns403 ( ) {
193193
194194 var validateFilter = new ValidateTopicAttribute ( ) ;
195195 var topic = TopicFactory . Create ( "Key" , "List" ) ;
@@ -208,14 +208,14 @@ public void NestedTopic_Returns_403() {
208208 }
209209
210210 /*==========================================================================================================================
211- | TEST: PAGE GROUP TOPIC RETURNS REDIRECT
211+ | TEST: PAGE GROUP TOPIC: RETURNS REDIRECT
212212 \-------------------------------------------------------------------------------------------------------------------------*/
213213 /// <summary>
214214 /// Ensures that a <see cref="RedirectResult"/> is thrown if the <see cref="TopicController.CurrentTopic"/> has a
215215 /// <see cref="ContentTypeDescriptor"/> of <c>PageGroup</c>.
216216 /// </summary>
217217 [ TestMethod ]
218- public void PageGroupTopic_Returns_Redirect ( ) {
218+ public void PageGroupTopic_ReturnsRedirect ( ) {
219219
220220 var validateFilter = new ValidateTopicAttribute ( ) ;
221221 var topic = TopicFactory . Create ( "Key" , "PageGroup" ) ;
0 commit comments