~drizzle-trunk/drizzle/development

0.67.577 by Bernt M. Johnsen
Testing that the DBD driver is there and displaying version
1
# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. 
0.67.305 by Bernt M. Johnsen
Copyright headres and license added
2
# Use is subject to license terms.
3
#
4
# This program is free software; you can redistribute it and/or modify
5
# it under the terms of the GNU General Public License as published by
6
# the Free Software Foundation; version 2 of the License.
7
#
8
# This program is distributed in the hope that it will be useful, but
9
# WITHOUT ANY WARRANTY; without even the implied warranty of
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11
# General Public License for more details.
12
#
13
# You should have received a copy of the GNU General Public License
14
# along with this program; if not, write to the Free Software
15
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
16
# USA
17
0.67.24 by Bernt M. Johnsen
Added unit test framework and started on unit tests
18
package Suite;
19
use lib 'unit';
20
use base qw(Test::Unit::TestSuite);
21
0.67.26 by Bernt M. Johnsen
Apply new masking (still old semantics, 1 level down)
22
sub name { 'RQG Unit Tests' } 
0.67.49 by Bernt M. Johnsen
Refactored gendata.pl and gendata-old.pl to modules. The scripts are kept as wrappers
23
24
sub include_tests { 
0.67.577 by Bernt M. Johnsen
Testing that the DBD driver is there and displaying version
25
qw(DBDVersion
26
RandomTest 
0.67.49 by Bernt M. Johnsen
Refactored gendata.pl and gendata-old.pl to modules. The scripts are kept as wrappers
27
GrammarTest 
28
FromGrammarTest 
29
ParseAllGrammars
30
GendataTest
0.74.1 by Bernt M. Johnsen
Smal fixxes, more testing
31
ExecutorTest
0.73.6 by Bernt M. Johnsen
Added simple script testing. Made gensql.pl usable against other databases
32
TestScripts
0.67.232 by Bernt M. Johnsen
Implemented: Bug #49565 _field and the rest should assert instead of returning an empty string
33
Metadata
0.67.279 by Bernt M. Johnsen
Better IPC Pipe handling + Unit test
34
IPC
0.98.3 by Bernt M. Johnsen
MySQL server added (not used yet)
35
TestMySQLServer
0.67.339 by Bernt M. Johnsen
Added replicating server (actually a master/slave pair) + unit test
36
TestReplServer
0.67.49 by Bernt M. Johnsen
Refactored gendata.pl and gendata-old.pl to modules. The scripts are kept as wrappers
37
) }
0.67.24 by Bernt M. Johnsen
Added unit test framework and started on unit tests
38
39
1;