**** Merged from MCS ****
[mono-project.git] / mcs / class / System.Data / Test / System.Data / TypedDataSetGeneratorTest.cs
blob66f336625c554b98f4a83d951b21139924122ee6
1 //
2 // TypedDataSetGeneratorTest.cs
3 //
4 // Author:
5 // Atsushi Enomoto <atsushi@ximian.com>
6 //
8 //
9 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 //
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 //
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
32 using System;
33 using System.CodeDom.Compiler;
34 using System.Data;
35 using NUnit.Framework;
36 using Microsoft.CSharp;
38 namespace MonoTests.System.Data
40 [TestFixture]
41 public class TypedDataSetGeneratorTest : Assertion
43 private ICodeGenerator gen;
45 public TypedDataSetGeneratorTest ()
47 gen = new CSharpCodeProvider ().CreateGenerator ();
50 [Test]
51 [ExpectedException (typeof (NullReferenceException))]
52 public void TestGenerateIdNameNullName ()
54 TypedDataSetGenerator.GenerateIdName (null, gen);
57 [Test]
58 [ExpectedException (typeof (NullReferenceException))]
59 public void TestGenerateIdNameNullProvider ()
61 TypedDataSetGenerator.GenerateIdName ("a", null);
64 [Test]
65 public void TestGenerateIdName ()
68 AssertEquals ("a", TypedDataSetGenerator.GenerateIdName ("a", gen));
69 AssertEquals ("_int", TypedDataSetGenerator.GenerateIdName ("int", gen));
70 AssertEquals ("_", TypedDataSetGenerator.GenerateIdName ("_", gen));
71 AssertEquals ("1", TypedDataSetGenerator.GenerateIdName ("1", gen));
72 AssertEquals ("1a", TypedDataSetGenerator.GenerateIdName ("1a", gen));
73 AssertEquals ("1*2", TypedDataSetGenerator.GenerateIdName ("1*2", gen));
74 AssertEquals ("-", TypedDataSetGenerator.GenerateIdName ("-", gen));
75 AssertEquals ("+", TypedDataSetGenerator.GenerateIdName ("+", gen));
76 AssertEquals ("", TypedDataSetGenerator.GenerateIdName ("", gen));
77 AssertEquals ("--", TypedDataSetGenerator.GenerateIdName ("--", gen));
78 AssertEquals ("++", TypedDataSetGenerator.GenerateIdName ("++", gen));
79 AssertEquals ("\u3042", TypedDataSetGenerator.GenerateIdName ("\u3042", gen));