Bug 15572. Lookup KnownTypeCollection element types in MSSimpleNamespace
[mono.git] / mcs / class / corlib / Test / System / Int32Test.cs
1 // Int32Test.cs - NUnit Test Cases for the System.Int32 struct
2 //
3 // Mario Martinez (mariom925@home.om)
4 //
5 // (C) Ximian, Inc.  http://www.ximian.com
6 // 
7
8 using NUnit.Framework;
9 using System;
10 using System.Threading;
11 using System.Globalization;
12
13 namespace MonoTests.System
14 {
15
16 [TestFixture]
17 public class Int32Test 
18 {
19         private const Int32 MyInt32_1 = -42;
20         private const Int32 MyInt32_2 = -2147483648;
21         private const Int32 MyInt32_3 = 2147483647;
22         private const string MyString1 = "-42";
23         private const string MyString2 = "-2147483648";
24         private const string MyString3 = "2147483647";
25         private string[] Formats1 = {"c", "d", "e", "f", "g", "n", "p", "x" };
26         private string[] Formats2 = {"c5", "d5", "e5", "f5", "g5", "n5", "p5", "x5" };
27         private string[] Results1 = {null,
28                                         "-2147483648", "-2.147484e+009", "-2147483648.00",
29                                         "-2147483648", "-2,147,483,648.00", "-214,748,364,800.00 %", "80000000"};
30         private string[] Results2 = {null,
31                                         "2147483647", "2.14748e+009", "2147483647.00000",
32                                         "2.1475e+09", "2,147,483,647.00000", "214,748,364,700.00000 %", "7fffffff"};
33         private string[] ResultsNfi1 = {"("+NumberFormatInfo.InvariantInfo.CurrencySymbol+"2,147,483,648.00)",
34                                         "-2147483648", "-2.147484e+009", "-2147483648.00",
35                                         "-2147483648", "-2,147,483,648.00", "-214,748,364,800.00 %", "80000000"};
36         private string[] ResultsNfi2 = {NumberFormatInfo.InvariantInfo.CurrencySymbol+"2,147,483,647.00000",
37                                         "2147483647", "2.14748e+009", "2147483647.00000",
38                                         "2.1475e+09", "2,147,483,647.00000", "214,748,364,700.00000 %", "7fffffff"};
39         private NumberFormatInfo Nfi = NumberFormatInfo.InvariantInfo;
40         private NumberFormatInfo NfiUser;
41         
42         private CultureInfo old_culture;
43
44         [TestFixtureSetUp]
45         public void SetUpFixture() 
46         {
47                 old_culture = Thread.CurrentThread.CurrentCulture;
48
49                 // Set culture to en-US and don't let the user override.
50                 Thread.CurrentThread.CurrentCulture = new CultureInfo ("en-US", false);
51
52                 // We can't initialize this until we set the culture.
53                 
54                 string decimals = new String ('0', NumberFormatInfo.CurrentInfo.NumberDecimalDigits);
55                 string perPattern = new string[] {"n %","n%","%n"} [NumberFormatInfo.CurrentInfo.PercentPositivePattern];
56                 
57                 Results1 [0] = "("+NumberFormatInfo.CurrentInfo.CurrencySymbol+"2,147,483,648.00)";
58                 Results1 [3] = "-2147483648." + decimals;
59                 Results1 [5] = "-2,147,483,648." + decimals;
60                 Results1 [6] = perPattern.Replace ("n","-214,748,364,800.00");
61                 
62                 Results2 [0] = NumberFormatInfo.CurrentInfo.CurrencySymbol+"2,147,483,647.00000";
63                 Results2 [6] = perPattern.Replace ("n","214,748,364,700.00000");
64
65                 NfiUser = new NumberFormatInfo ();
66                 NfiUser.CurrencyDecimalDigits = 3;
67                 NfiUser.CurrencyDecimalSeparator = ":";
68                 NfiUser.CurrencyGroupSeparator = "/";
69                 NfiUser.CurrencyGroupSizes = new int[] { 2, 1, 0 };
70                 NfiUser.CurrencyNegativePattern = 10;  // n $-
71                 NfiUser.CurrencyPositivePattern = 3;  // n $
72                 NfiUser.CurrencySymbol = "XYZ";
73                 NfiUser.PercentDecimalDigits = 1;
74                 NfiUser.PercentDecimalSeparator = ";";
75                 NfiUser.PercentGroupSeparator = "~";
76                 NfiUser.PercentGroupSizes = new int[] { 1 };
77                 NfiUser.PercentNegativePattern = 2;
78                 NfiUser.PercentPositivePattern = 2;
79                 NfiUser.PercentSymbol = "%%%";
80         }
81         
82         [SetUp]
83         public void Setup ()
84         {
85                 Thread.CurrentThread.CurrentCulture = new CultureInfo ("en-US", false);
86         }
87
88         [TestFixtureTearDown]
89         public void TearDown()
90         {
91                 Thread.CurrentThread.CurrentCulture = old_culture;
92         }
93
94         [Test]
95         public void TestMinMax()
96         {
97                 
98                 Assert.AreEqual(Int32.MinValue, MyInt32_2, "#A01");
99                 Assert.AreEqual(Int32.MaxValue, MyInt32_3, "#A02");
100         }
101
102         [Test]  
103         public void TestCompareTo()
104         {
105                 Assert.IsTrue(MyInt32_3.CompareTo(MyInt32_2) > 0, "MyInt32_3.CompareTo(MyInt32_2) > 0");
106                 Assert.IsTrue(MyInt32_2.CompareTo(MyInt32_2) == 0, "MyInt32_2.CompareTo(MyInt32_2) == 0");
107                 Assert.IsTrue(MyInt32_1.CompareTo((object)(Int32)(-42)) == 0, "MyInt32_1.CompareTo((Int32)(-42)) == 0");
108                 Assert.IsTrue(MyInt32_2.CompareTo(MyInt32_3) < 0, "MyInt32_2.CompareTo(MyInt32_3) < 0");
109                 try {
110                         MyInt32_2.CompareTo((object)(Int16)100);
111                         Assert.Fail("Should raise a System.ArgumentException");
112                 }
113                 catch (Exception e) {
114                         Assert.IsTrue(typeof(ArgumentException) == e.GetType(), "typeof(ArgumentException) == e.GetType()");
115                 }
116         }
117
118         [Test]
119         public void TestEquals()
120         {
121                 Assert.IsTrue (MyInt32_1.Equals (MyInt32_1), "#B01");
122                 Assert.IsTrue (MyInt32_1.Equals ((Int32)(-42)), "#B02");
123                 Assert.IsTrue (MyInt32_1.Equals ((object)(SByte)(-42)) == false, "#B03");
124                 Assert.IsTrue (MyInt32_1.Equals (MyInt32_2) == false, "#B04");
125         }
126
127         [Test]  
128         public void TestGetHashCode()
129         {
130                 try {
131                         MyInt32_1.GetHashCode();
132                         MyInt32_2.GetHashCode();
133                         MyInt32_3.GetHashCode();
134                 }
135                 catch {
136                         Assert.Fail("GetHashCode should not raise an exception here");
137                 }
138         }
139
140         [Test]  
141         public void TestParse()
142         {
143                 //test Parse(string s)
144                 Assert.AreEqual (MyInt32_1, Int32.Parse (MyString1), "#C01");
145                 Assert.AreEqual (MyInt32_2, Int32.Parse (MyString2), "#C02");
146                 Assert.AreEqual (MyInt32_3, Int32.Parse (MyString3), "#C03");
147
148                 Assert.AreEqual (1, Int32.Parse ("1"), "#C04");
149                 Assert.AreEqual (1, Int32.Parse (" 1"), "#C05");
150                 Assert.AreEqual (1, Int32.Parse ("     1"), "#C06");
151                 Assert.AreEqual (1, Int32.Parse ("1    "), "#C07");
152                 Assert.AreEqual (1, Int32.Parse ("+1"), "#C08");
153                 Assert.AreEqual (-1, Int32.Parse ("-1"), "#C09");
154                 Assert.AreEqual (-1, Int32.Parse ("  -1"), "#C10");
155                 Assert.AreEqual (-1, Int32.Parse ("  -1  "), "#C11");
156                 Assert.AreEqual (-1, Int32.Parse ("  -1  "), "#C12");
157
158                 try {
159                         Int32.Parse(null);
160                         Assert.Fail ("#C13: Should raise a System.ArgumentNullException");
161                 }
162                 catch (Exception e) {
163                         Assert.IsTrue (typeof (ArgumentNullException) == e.GetType(), "#C14");
164                 }
165                 try {
166                         Int32.Parse("not-a-number");
167                         Assert.Fail ("#C15: Should raise a System.FormatException");
168                 }
169                 catch (Exception e) {
170                         Assert.IsTrue (typeof (FormatException) == e.GetType(), "#C16");
171                 }
172                 try {
173                         double OverInt = (double)Int32.MaxValue + 1;
174                         Int32.Parse(OverInt.ToString());
175                         Assert.Fail ("#C17: Should raise a System.OverflowException");
176                 }
177                 catch (Exception e) {
178                         Assert.AreEqual (typeof (OverflowException), e.GetType(), "#C18");
179                 }
180                 //test Parse(string s, NumberStyles style)
181                 Assert.AreEqual (42, Int32.Parse (" $42 ", NumberStyles.Currency), "#C19");
182                 try {
183                         Int32.Parse("$42", NumberStyles.Integer);
184                         Assert.Fail ("#C20: Should raise a System.FormatException");
185                 }
186                 catch (Exception e) {
187                         Assert.IsTrue (typeof (FormatException) == e.GetType(), "#C21");
188                 }
189                 //test Parse(string s, IFormatProvider provider)
190                 Assert.AreEqual (-42, Int32.Parse (" -42 ", Nfi), "#C22");
191                 try {
192                         Int32.Parse("%42", Nfi);
193                         Assert.Fail ("#C23: Should raise a System.FormatException");
194                 }
195                 catch (Exception e) {
196                         Assert.IsTrue (typeof (FormatException) == e.GetType(), "#C24");
197                 }
198                 //test Parse(string s, NumberStyles style, IFormatProvider provider)
199                 Assert.AreEqual (16, Int32.Parse (" 10 ", NumberStyles.HexNumber, Nfi), "#C25");
200                 try {
201                         Int32.Parse("$42", NumberStyles.Integer, Nfi);
202                         Assert.Fail ("#C26: Should raise a System.FormatException");
203                 }
204                 catch (Exception e) {
205                         Assert.IsTrue(typeof (FormatException) == e.GetType(), "#C27");
206                 }
207
208                 try {
209                         Int32.Parse (" - 1 ");
210                         Assert.Fail ("#C28: Should raise FormatException");
211                 } catch (Exception e){
212                         Assert.IsTrue (typeof (FormatException) == e.GetType (), "#C29");
213                 }
214
215                 try {
216                         Int32.Parse (" - ");
217                         Assert.Fail ("#C30: Should raise FormatException");
218                 } catch (Exception e){
219                         Assert.IsTrue (typeof (FormatException) == e.GetType (), "#C31");
220                 }
221                 Assert.AreEqual (-123, Int32.Parse ("ffffff85", NumberStyles.HexNumber, Nfi), "#C32");
222                 try {
223                         Int32.Parse ("100000000", NumberStyles.HexNumber, Nfi);
224                         Assert.Fail ("#C33: Should raise OverflowException");
225                 } catch (Exception e){
226                         Assert.IsTrue (typeof (OverflowException) == e.GetType (), "#C34");
227                 }
228                 try {
229                         Int32.Parse ("2147483648");
230                         Assert.Fail ("C#35: should raise OverflowException");
231                 } catch (Exception e) {
232                         Assert.IsTrue (typeof (OverflowException) == e.GetType (), "C#36");
233                 }
234                 try {
235                         Int32.Parse ("2147483648", CultureInfo.InvariantCulture);
236                         Assert.Fail ("C#37: should raise OverflowException");
237                 } catch (Exception e) {
238                         Assert.IsTrue (typeof (OverflowException) == e.GetType (), "C#38");
239                 }
240
241                 try {
242                         Int32.Parse (null);
243                         Assert.Fail ("C#39: Should raise an ArgumentNullException");
244                 } catch (Exception e){
245                         Assert.IsTrue (typeof (ArgumentNullException) == e.GetType (), "C#40");
246                 }
247
248                 try {
249                         Int32.Parse ("123", (NumberStyles) 60000);
250                         Assert.Fail ("C#41 Should raise an ArgumentException");
251                 } catch (Exception e){
252                         Assert.IsTrue (typeof (ArgumentException) == e.GetType (), "C#42");
253                 }
254
255                 // Pass a DateTimeFormatInfo, it is unable to format
256                 // numbers, but we should not crash
257                 
258                 Int32.Parse ("123", new DateTimeFormatInfo ());
259
260                 Assert.AreEqual (734561, Int32.Parse ("734561\0"), "C#43");
261                 Assert.AreEqual (734561, Int32.Parse ("734561\0\0\0    \0"), "C#44");
262                 Assert.AreEqual (734561, Int32.Parse ("734561\0\0\0    "), "C#45");
263                 Assert.AreEqual (734561, Int32.Parse ("734561\0\0\0"), "C#46");
264
265                 Assert.AreEqual (0, Int32.Parse ("0+", NumberStyles.Any), "#50");
266         }
267
268     [Test]
269         public void TestParseExponent ()
270         {
271                 Assert.AreEqual (2, Int32.Parse ("2E0", NumberStyles.AllowExponent), "A#1");
272                 Assert.AreEqual (20, Int32.Parse ("2E1", NumberStyles.AllowExponent), "A#2");
273                 Assert.AreEqual (200, Int32.Parse ("2E2", NumberStyles.AllowExponent), "A#3");
274                 Assert.AreEqual (2000000, Int32.Parse ("2E6", NumberStyles.AllowExponent), "A#4");
275                 Assert.AreEqual (200, Int32.Parse ("2E+2", NumberStyles.AllowExponent), "A#5");
276                 Assert.AreEqual (2, Int32.Parse ("2", NumberStyles.AllowExponent), "A#6");
277                 Assert.AreEqual (21, Int32.Parse ("2.1E1", NumberStyles.AllowDecimalPoint | NumberStyles.AllowExponent), "A#7");
278                 Assert.AreEqual (520, Int32.Parse (".52E3", NumberStyles.AllowDecimalPoint | NumberStyles.AllowExponent), "A#8");
279                 Assert.AreEqual (32500000, Int32.Parse ("32.5E6", NumberStyles.AllowDecimalPoint | NumberStyles.AllowExponent), "A#9");
280                 Assert.AreEqual (890, Int32.Parse ("8.9000E2", NumberStyles.AllowDecimalPoint | NumberStyles.AllowExponent), "A#10");
281
282                 try {
283                         Int32.Parse ("2E");
284                         Assert.Fail ("B#1");
285                 } catch (FormatException) {
286                 }
287
288                 try {
289                         Int32.Parse ("2E3.0", NumberStyles.AllowExponent); // decimal notation for the exponent
290                         Assert.Fail ("B#2");
291                 } catch (FormatException) {
292                 }
293
294                 try {
295                         Int32.Parse ("2E 2", NumberStyles.AllowExponent);
296                         Assert.Fail ("B#3");
297                 } catch (FormatException) {
298                 }
299
300                 try {
301                         Int32.Parse ("2E2 ", NumberStyles.AllowExponent);
302                         Assert.Fail ("B#4");
303                 } catch (FormatException) {
304                 }
305
306                 try {
307                         Int32.Parse ("2E66", NumberStyles.AllowExponent); // final result overflow
308                         Assert.Fail ("B#5");
309                 } catch (OverflowException) {
310                 }
311
312                 try {
313                         long exponent = (long)Int32.MaxValue + 10;
314                         Int32.Parse ("2E" + exponent.ToString (), NumberStyles.AllowExponent);
315                         Assert.Fail ("B#6");
316                 } catch (OverflowException) {
317                 }
318
319                 try {
320                         Int32.Parse ("2E-1", NumberStyles.AllowExponent); // negative exponent
321                         Assert.Fail ("B#7");
322                 } catch (OverflowException) {
323                 }
324
325                 try {
326                         Int32.Parse ("2 math e1", NumberStyles.AllowExponent);
327                         Assert.Fail ("B#8");
328                 } catch (FormatException) {
329                 }
330
331                 try {
332                         Int32.Parse ("2.09E1",  NumberStyles.AllowDecimalPoint | NumberStyles.AllowExponent);
333                         Assert.Fail ("B#9");
334                 } catch (OverflowException) {
335                 }               
336         }
337
338         [Test]
339         public void TestTryParse()
340         {
341                 int result;
342
343                 Assert.AreEqual (true, Int32.TryParse (MyString1, out result));
344                 Assert.AreEqual (MyInt32_1, result);
345                 Assert.AreEqual (true, Int32.TryParse (MyString2, out result));
346                 Assert.AreEqual (MyInt32_2, result);
347                 Assert.AreEqual (true, Int32.TryParse (MyString3, out result));
348                 Assert.AreEqual (MyInt32_3, result);
349
350                 Assert.AreEqual (true, Int32.TryParse ("1", out result));
351                 Assert.AreEqual (1, result);
352                 Assert.AreEqual (true, Int32.TryParse (" 1", out result));
353                 Assert.AreEqual (1, result);
354                 Assert.AreEqual (true, Int32.TryParse ("     1", out result));
355                 Assert.AreEqual (1, result);
356                 Assert.AreEqual (true, Int32.TryParse ("1    ", out result));
357                 Assert.AreEqual (1, result);
358                 Assert.AreEqual (true, Int32.TryParse ("+1", out result));
359                 Assert.AreEqual (1, result);
360                 Assert.AreEqual (true, Int32.TryParse ("-1", out result));
361                 Assert.AreEqual (-1, result);
362                 Assert.AreEqual (true, Int32.TryParse ("  -1", out result));
363                 Assert.AreEqual (-1, result);
364                 Assert.AreEqual (true, Int32.TryParse ("  -1  ", out result));
365                 Assert.AreEqual (-1, result);
366                 Assert.AreEqual (true, Int32.TryParse ("  -1  ", out result));
367                 Assert.AreEqual (-1, result);
368
369                 result = 1;
370                 Assert.AreEqual (false, Int32.TryParse (null, out result));
371                 Assert.AreEqual (0, result);
372
373                 Assert.AreEqual (false, Int32.TryParse ("not-a-number", out result));
374
375                 double OverInt = (double)Int32.MaxValue + 1;
376                 Assert.AreEqual (false, Int32.TryParse (OverInt.ToString (), out result));
377                 Assert.AreEqual (false, Int32.TryParse (OverInt.ToString (), NumberStyles.None, CultureInfo.InvariantCulture, out result));
378
379                 Assert.AreEqual (false, Int32.TryParse ("$42", NumberStyles.Integer, null, out result));
380                 Assert.AreEqual (false, Int32.TryParse ("%42", NumberStyles.Integer, Nfi, out result));
381                 Assert.AreEqual (false, Int32.TryParse ("$42", NumberStyles.Integer, Nfi, out result));
382                 Assert.AreEqual (false, Int32.TryParse (" - 1 ", out result));
383                 Assert.AreEqual (false, Int32.TryParse (" - ", out result));
384                 Assert.AreEqual (false, Int32.TryParse ("100000000", NumberStyles.HexNumber, Nfi, out result));
385                 Assert.AreEqual (false, Int32.TryParse ("10000000000", out result));
386                 Assert.AreEqual (false, Int32.TryParse ("-10000000000", out result));
387                 Assert.AreEqual (true, Int32.TryParse ("7fffffff", NumberStyles.HexNumber, Nfi, out result));
388                 Assert.AreEqual (Int32.MaxValue, result);
389                 Assert.AreEqual (true, Int32.TryParse ("80000000", NumberStyles.HexNumber, Nfi, out result));
390                 Assert.AreEqual (Int32.MinValue, result);
391                 Assert.AreEqual (true, Int32.TryParse ("ffffffff", NumberStyles.HexNumber, Nfi, out result));
392                 Assert.AreEqual (-1, result);
393                 Assert.AreEqual (false, Int32.TryParse ("100000000", NumberStyles.HexNumber, Nfi, out result));
394                 Assert.IsFalse (int.TryParse ("-", NumberStyles.AllowLeadingSign, Nfi, out result));
395                 Assert.IsFalse (int.TryParse (Nfi.CurrencySymbol + "-", NumberStyles.AllowLeadingSign | NumberStyles.AllowCurrencySymbol, Nfi, out result));
396         }
397
398         [Test]  
399         public void TestToString()
400         {
401                 //test ToString()
402                 Assert.AreEqual (MyString1, MyInt32_1.ToString (), "#D01");
403                 Assert.AreEqual (MyString2, MyInt32_2.ToString (), "#D02");
404                 Assert.AreEqual (MyString3, MyInt32_3.ToString (), "#D03");
405
406                 //test ToString(string format, IFormatProvider provider);
407                 for (int i=0; i < Formats1.Length; i++) {
408                         Assert.AreEqual (ResultsNfi1 [i], MyInt32_2.ToString (Formats1 [i], Nfi),
409                                                          "#D04(" + i + "," + Formats1 [i] + ")");
410                         Assert.AreEqual (ResultsNfi2 [i], MyInt32_3.ToString (Formats2 [i], Nfi), 
411                                                          "#D05(" + i + "," + Formats2 [i] + ")");
412                 }
413
414                 //test ToString(string format)
415                 for (int i=0; i < Formats1.Length; i++) {
416                         Assert.AreEqual (Results1 [i], MyInt32_2.ToString(Formats1[i]), "#D06(" + i + ")");
417                         Assert.AreEqual (Results2 [i], MyInt32_3.ToString(Formats2[i]),
418                                                          "#D07(" + i + ")");
419                                       
420                 }
421
422                 try {
423                         MyInt32_1.ToString("z");
424                         Assert.Fail ("#D08: Should raise a System.FormatException");
425                 }
426                 catch (Exception e) {
427                         Assert.IsTrue (typeof (FormatException) == e.GetType(), "#D09");
428                 }
429         }
430
431         [Test]
432         public void TestCustomToString()
433         {
434                 int i = 123;
435
436                 Assert.AreEqual ("00123", i.ToString ("00000"), "Custom format string 00000");
437                 Assert.AreEqual ("123", i.ToString ("####"), "Custom format string ####");
438                 Assert.AreEqual ("0123", i.ToString ("0###"), "Custom format string ####");
439                 Assert.AreEqual ("0123", i.ToString ("#0###"), "Custom format string ####");
440                 Assert.AreEqual ("000123", i.ToString ("0#0###"), "Custom format string ####");
441         }
442
443         [Test]
444         public void TestSections ()
445         {
446                 int hundred = 100;
447                 int neghund = -100;
448                 
449                 Assert.IsTrue ( hundred.ToString ("#;#") == "100", "#TS1");
450                 Assert.IsTrue ( hundred.ToString ("-#;#") == "-100", "#TS2");
451                 Assert.IsTrue ( neghund.ToString ("#;#") == "100", "#TS3");
452                 Assert.IsTrue ( neghund.ToString ("#;-#") == "-100", "#TS3");
453         }
454         
455         [Test]
456         public void ToString_Defaults () 
457         {
458                 Int32 i = 254;
459                 // everything defaults to "G"
460                 string def = i.ToString ("G");
461                 Assert.AreEqual (def, i.ToString (), "ToString()");
462                 Assert.AreEqual (def, i.ToString ((IFormatProvider)null), "ToString((IFormatProvider)null)");
463                 Assert.AreEqual (def, i.ToString ((string)null), "ToString((string)null)");
464                 Assert.AreEqual (def, i.ToString (String.Empty), "ToString(empty)");
465                 Assert.AreEqual (def, i.ToString (null, null), "ToString(null,null)");
466                 Assert.AreEqual (def, i.ToString (String.Empty, null), "ToString(empty,null)");
467
468                 Assert.AreEqual ("254", def, "ToString(G)");
469         }
470
471         [Test]
472         public void ParseRespectCurrentCulture ()
473         {
474                 var old = Thread.CurrentThread.CurrentCulture;
475                 var cur = (CultureInfo)old.Clone ();
476
477                 NumberFormatInfo ninfo = new NumberFormatInfo ();
478                 ninfo.NegativeSign = ">";
479                 ninfo.PositiveSign = "%";
480                 cur.NumberFormat = ninfo;
481
482                 Thread.CurrentThread.CurrentCulture = cur;
483
484                 int val = 0;
485
486                 try {
487                         Assert.IsTrue (int.TryParse (">11", out val), "#1");
488                         Assert.AreEqual (-11, val, "#2");
489                         Assert.IsTrue (int.TryParse ("%11", out val), "#3");
490                         Assert.AreEqual (11, val, "#4");
491                 } finally {
492                         Thread.CurrentThread.CurrentCulture = old;
493                 }
494         }
495
496         [Test]
497         public void TestUserCurrency ()
498         {
499                 const int val1 = -1234567;
500                 const int val2 = 1234567;
501
502                 string s = "";
503                 int v;
504                 s = val1.ToString ("c", NfiUser);
505                 Assert.AreEqual ("1234/5/67:000 XYZ-", s, "Currency value type 1 is not what we want to try to parse");
506                 v = Int32.Parse ("1234/5/67:000   XYZ-", NumberStyles.Currency, NfiUser);
507                 Assert.AreEqual (val1, v);
508
509                 s = val2.ToString ("c", NfiUser);
510                 Assert.AreEqual ("1234/5/67:000 XYZ", s, "Currency value type 2 is not what we want to try to parse");
511                 v = Int32.Parse (s, NumberStyles.Currency, NfiUser);
512                 Assert.AreEqual (val2, v);
513         }
514 }
515
516 }