@@ -78,7 +78,7 @@ public void TestMultipleConstantArraysParamsTestMethod()
7878 byte [ ] bytes2 = Encoding . ASCII . GetBytes ( "TestMulti2" ) ;
7979 sbyte [ ] sbytes2 = Array . ConvertAll ( bytes2 , q => Convert . ToSByte ( q ) ) ;
8080
81- string s = CLI . CLI . MultipleConstantArraysParamsTestMethod ( sbytes , sbytes2 ) ;
81+ string s = CLI . CLICool . MultipleConstantArraysParamsTestMethod ( sbytes , sbytes2 ) ;
8282 Assert . AreEqual ( "TestMultiTestMulti2" , s ) ;
8383 }
8484
@@ -88,7 +88,7 @@ public void TestMultipleConstantArraysParamsTestMethodLongerSourceArray()
8888 byte [ ] bytes = Encoding . ASCII . GetBytes ( "TestMultipleConstantArraysParamsTestMethodLongerSourceArray" ) ;
8989 sbyte [ ] sbytes = Array . ConvertAll ( bytes , q => Convert . ToSByte ( q ) ) ;
9090
91- Assert . Throws < InvalidOperationException > ( ( ) => CLI . CLI . MultipleConstantArraysParamsTestMethod ( sbytes , new sbyte [ ] { } ) ) ;
91+ Assert . Throws < InvalidOperationException > ( ( ) => CLI . CLICool . MultipleConstantArraysParamsTestMethod ( sbytes , new sbyte [ ] { } ) ) ;
9292 }
9393
9494 [ Test ]
@@ -110,7 +110,7 @@ public void TestStructWithNestedUnionTestMethod()
110110 Assert . AreEqual ( 10 , val . NestedUnion . SzText . Length ) ;
111111 Assert . AreEqual ( "TestUnions" , val . NestedUnion . SzText ) ;
112112
113- string ret = CLI . CLI . StructWithNestedUnionTestMethod ( val ) ;
113+ string ret = CLI . CLICool . StructWithNestedUnionTestMethod ( val ) ;
114114
115115 Assert . AreEqual ( "TestUnions" , ret ) ;
116116 }
@@ -146,7 +146,7 @@ public void TestUnionWithNestedStructTestMethod()
146146 Assert . AreEqual ( 10 , unionWithNestedStruct . NestedStruct . SzText . Length ) ;
147147 Assert . AreEqual ( "TestUnions" , unionWithNestedStruct . NestedStruct . SzText ) ;
148148
149- string ret = CLI . CLI . UnionWithNestedStructTestMethod ( unionWithNestedStruct ) ;
149+ string ret = CLI . CLICool . UnionWithNestedStructTestMethod ( unionWithNestedStruct ) ;
150150
151151 Assert . AreEqual ( "TestUnions" , ret ) ;
152152 }
@@ -172,7 +172,7 @@ public void TestUnionWithNestedStructArrayTestMethod()
172172
173173 Assert . AreEqual ( 2 , unionWithNestedStructArray . NestedStructs . Length ) ;
174174
175- string ret = CLI . CLI . UnionWithNestedStructArrayTestMethod ( unionWithNestedStructArray ) ;
175+ string ret = CLI . CLICool . UnionWithNestedStructArrayTestMethod ( unionWithNestedStructArray ) ;
176176
177177 Assert . AreEqual ( "TestUnion1TestUnion2" , ret ) ;
178178 }
0 commit comments