* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / class / System.Data / Test / System.Data.Tests.Mainsoft / System.Data / DataRowCollection / DataRowCollection_CopyTo_AI.cs
1 // Authors:
2 //   Rafael Mizrahi   <rafim@mainsoft.com>
3 //   Erez Lotan       <erezl@mainsoft.com>
4 //   Oren Gurfinkel   <oreng@mainsoft.com>
5 //   Ofer Borstein
6 // 
7 // Copyright (c) 2004 Mainsoft Co.
8 // 
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 // 
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 // 
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28
29 using System;
30 using System.Data;
31 using NUnit.Framework;
32 using GHTUtils;
33 using GHTUtils.Base;
34
35 namespace tests.system_data_dll.System_Data
36 {
37 [TestFixture] public class DataRowCollection_CopyTo_AI : GHTBase
38 {
39         [Test] public void Main()
40         {
41                 DataRowCollection_CopyTo_AI tc = new DataRowCollection_CopyTo_AI();
42                 Exception exp = null;
43                 try
44                 {
45                         tc.BeginTest("DataRowCollection_CopyTo_AI");
46                         tc.run();
47                 }
48                 catch(Exception ex)
49                 {
50                         exp = ex;
51                 }
52                 finally
53                 {
54                         tc.EndTest(exp);
55                 }
56                 
57         }
58
59         //Activate This Construntor to log All To Standard output
60         //public TestClass():base(true){}
61
62         //Activate this constructor to log Failures to a log file
63         //public TestClass(System.IO.TextWriter tw):base(tw, false){}
64
65
66         //Activate this constructor to log All to a log file
67         //public TestClass(System.IO.TextWriter tw):base(tw, true){}
68
69         //BY DEFAULT LOGGING IS DONE TO THE STANDARD OUTPUT ONLY FOR FAILURES
70
71         public void run()
72         {
73                 Exception exp = null;
74                 try
75                 {
76                         BeginCase("DataRowCollection_CopyTo_AI");
77                         DataRowCollection_CopyTo_AI1();
78                 } 
79                 catch(Exception ex)
80                 {
81                         exp = ex;
82                 }
83                 finally
84                 {
85                         EndCase(exp);
86                         exp = null;
87                 }
88         }
89         public void DataRowCollection_CopyTo_AI1()
90         {
91                 DataTable dt = DataProvider.CreateParentDataTable();
92                 DataRow[] arr = new DataRow[dt.Rows.Count];
93                 dt.Rows.CopyTo(arr,0);
94                 Compare(arr.Length,dt.Rows.Count);
95                 
96                 int index=0;
97                 foreach (DataRow dr in dt.Rows)
98                 {
99                         Compare(arr[index],dr);
100                         index++;
101
102                 }
103         }
104 }
105 }