Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ChangeLog « Test « System.Data « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8b362897dba41470add9d5657b8514dbb34a4de3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
2002-05-27  Tim Coleman <tim@timcoleman.com>
	* TestSqlDataAdapter.cs: remove explicit opening of connection.
	This should occur implicitly now.

2002-05-23  Daniel Morgan <danmorg@sc.rr.com>

	* TestSqlParameters.cs: read and display the schema columns
	correctly

2002-05-16  Tim Coleman  <tim@timcoleman.com>
        * TestSqlDataAdapter.cs: Added the foreach loop to iterate through
        all of the DataRows in the DataSet table "Table", as the
        GetEnumerator method of InternalDataCollectionBase has now been
        implemented.


2002/05/17  Nick Drochak <ndrochak@gol.com>

	* System.Data_test.build: Remove RunTests from the default build. We
	can add this later, but it keeps the build from breaking for now.

	* TestSqlDataAdapter.cs: Fix build breaker.

2002-05-11  Daniel Morgan <danmorg@sc.rr.com>

	* Test/PostgresTest.cs: added call to PostgreSQL stored procedure
	version() which returns the version of the PostgreSQL DBMS you
	are connected to.  This works and I did not realize it.  Thanks
	goes to Gonzalo.

2002-05-11  Daniel Morgan <danmorg@sc.rr.com>

	* AllTests.cs: needed a using for System.Data and System.Data.SqlClient,
	changed SqlTypes.AllTests.Suite to System.Data.SqlTypes.AllTests.Suite
	
	* System.Data/DataColumnTest.cs: changed typeof to DataColumnTest 

2002-05-10  Rodrigo Moya <rodrigo@ximian.com>

        * TestDataColumn.cs: removed.

	* System.Data_test.build: removed reference to TestDataColumn.

	* TheTests.cs: added RunDataColumnTest class.
	(RunAllTests.AddAllTests): added test for RunDataColumnTest.

        * System.Data/AllTests.cs: test suite for System.Data.

        * System.Data/DataColumnTest.cs: NUnit test for DataColumn.

2002-05-09  Daniel Morgan <danmorg@sc.rr.com>

	* System.Data_test.build: exclude file TestDataColumn.cs
	test.build files have two places where a file needs to
	be excluded

2002-05-06  Daniel Morgan <danmorg@sc.rr.com>

	* System.Data.SqlTypes.SqlInt32Test.cs: missing
	declaration for SqlInt32 z which was a test build blocker
	
	* PostgresTest.cs: got rid of warning about missing e
	
	* Test/PostgresTest.cs: exclude PostgresTest.cs 
	from test build

2002-05-05  Tim Coleman <tim@timcoleman.com>
	* TheTests.cs:
	* System.Data.SqlTypes/SqlInt32Test.cs:
		More test cases for System.Data.SqlTypes.SqlInt32

2002-05-03  Tim Coleman <tim@timcoleman.com>
	* Added ChangeLog to test dir
	* Added NUnit framework necessary for make test
	* Added subdirectory for System.Data.SqlTypes
	* New files:
		ChangeLog
		AllTests.cs
		TheTests.cs
		System.Data_test.build
		System.Data.SqlTypes
		System.Data.SqlTypes/AllTests.cs
		System.Data.SqlTypes/SqlInt32Test.cs