@@ -43,39 +43,40 @@ public void Dispose()
4343 [ Test ]
4444 public void ImplicitConversionToString ( )
4545 {
46- // we assert implicit conversion took place
47- Assert . AreEqual ( "OnlyString impl: implicit to string" , data ) ;
48- }
46+ var data = ( string ) module . TestA ( ) ;
47+ // we assert implicit conversion took place
48+ Assert . AreEqual ( "OnlyString impl: implicit to string" , data ) ;
49+ }
4950
5051 [ Test ]
5152 public void ImplicitConversionToClass ( )
5253 {
5354 var data = ( string ) module . TestB ( ) ;
54- // we assert implicit conversion took place
55- Assert . AreEqual ( "OnlyClass impl" , data ) ;
56- }
55+ // we assert implicit conversion took place
56+ Assert . AreEqual ( "OnlyClass impl" , data ) ;
57+ }
5758
5859 [ Test ]
5960 public void WillAvoidUsingImplicitConversionIfPossible_String ( )
6061 {
6162 var data = ( string ) module . TestC ( ) ;
62- // we assert no implicit conversion took place
63- Assert . AreEqual ( "string impl: input string" , data ) ;
64- }
63+ // we assert no implicit conversion took place
64+ Assert . AreEqual ( "string impl: input string" , data ) ;
65+ }
6566
6667 [ Test ]
6768 public void WillAvoidUsingImplicitConversionIfPossible_Class ( )
6869 {
6970 var data = ( string ) module . TestD ( ) ;
70- // we assert no implicit conversion took place
71- Assert . AreEqual ( "TestImplicitConversion impl" , data ) ;
71+ // we assert no implicit conversion took place
72+ Assert . AreEqual ( "TestImplicitConversion impl" , data ) ;
7273
7374 }
7475
7576 [ Test ]
7677 public void ArrayLength ( )
7778 {
78- var array = new [ ] { "pepe" , "pinocho" } ;
79+ var array = new [ ] { "pepe" , "pinocho" } ;
7980 var data = ( bool ) module . TestE ( array ) ;
8081
8182 // Assert it is true
0 commit comments