Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
afb21d1a
Commit
afb21d1a
authored
Jan 01, 2007
by
zYne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
--no commit message
--no commit message
parent
b18b38da
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
17 deletions
+32
-17
run.php
tests/run.php
+32
-17
No files found.
tests/run.php
View file @
afb21d1a
...
@@ -58,14 +58,36 @@ $test = new GroupTest('Doctrine Framework Unit Tests');
...
@@ -58,14 +58,36 @@ $test = new GroupTest('Doctrine Framework Unit Tests');
// DATABASE ABSTRACTION tests
// DATABASE ABSTRACTION tests
$test
->
addTestCase
(
new
Doctrine_Connection_Firebird_TestCase
());
// Connection drivers (not yet fully tested)
$test
->
addTestCase
(
new
Doctrine_Connection_Informix_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Connection_Mysql_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Connection_Mssql_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Connection_Pgsql_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Connection_Pgsql_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Connection_Oracle_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Connection_Oracle_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Connection_Sqlite_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Connection_Sqlite_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Connection_Mssql_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Connection_Mysql_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Connection_Firebird_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Connection_Informix_TestCase
());
// Transaction module (FULLY TESTED)
$test
->
addTestCase
(
new
Doctrine_Transaction_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Transaction_Firebird_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Transaction_Informix_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Transaction_Mysql_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Transaction_Mssql_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Transaction_Pgsql_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Transaction_Oracle_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Transaction_Sqlite_TestCase
());
// DataDict module (FULLY TESTED)
$test
->
addTestCase
(
new
Doctrine_DataDict_TestCase
());
$test
->
addTestCase
(
new
Doctrine_DataDict_Firebird_TestCase
());
$test
->
addTestCase
(
new
Doctrine_DataDict_Informix_TestCase
());
$test
->
addTestCase
(
new
Doctrine_DataDict_Mysql_TestCase
());
$test
->
addTestCase
(
new
Doctrine_DataDict_Mssql_TestCase
());
$test
->
addTestCase
(
new
Doctrine_DataDict_Pgsql_TestCase
());
$test
->
addTestCase
(
new
Doctrine_DataDict_Oracle_TestCase
());
$test
->
addTestCase
(
new
Doctrine_DataDict_Sqlite_TestCase
());
// Export module (not yet fully tested)
$test
->
addTestCase
(
new
Doctrine_Export_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Export_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Export_Reporter_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Export_Reporter_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Export_Firebird_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Export_Firebird_TestCase
());
...
@@ -76,15 +98,7 @@ $test->addTestCase(new Doctrine_Export_Pgsql_TestCase());
...
@@ -76,15 +98,7 @@ $test->addTestCase(new Doctrine_Export_Pgsql_TestCase());
$test
->
addTestCase
(
new
Doctrine_Export_Oracle_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Export_Oracle_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Export_Sqlite_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Export_Sqlite_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Transaction_TestCase
());
// Import module (not yet fully tested)
$test
->
addTestCase
(
new
Doctrine_Transaction_Firebird_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Transaction_Informix_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Transaction_Mysql_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Transaction_Mssql_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Transaction_Pgsql_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Transaction_Oracle_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Transaction_Sqlite_TestCase
());
//$test->addTestCase(new Doctrine_Import_TestCase());
//$test->addTestCase(new Doctrine_Import_TestCase());
$test
->
addTestCase
(
new
Doctrine_Import_Firebird_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Import_Firebird_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Import_Informix_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Import_Informix_TestCase
());
...
@@ -94,6 +108,7 @@ $test->addTestCase(new Doctrine_Import_Pgsql_TestCase());
...
@@ -94,6 +108,7 @@ $test->addTestCase(new Doctrine_Import_Pgsql_TestCase());
$test
->
addTestCase
(
new
Doctrine_Import_Oracle_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Import_Oracle_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Import_Sqlite_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Import_Sqlite_TestCase
());
// Expression module (not yet fully tested)
$test
->
addTestCase
(
new
Doctrine_Expression_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Expression_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Expression_Firebird_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Expression_Firebird_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Expression_Informix_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Expression_Informix_TestCase
());
...
@@ -114,8 +129,8 @@ $test->addTestCase(new Doctrine_Table_TestCase());
...
@@ -114,8 +129,8 @@ $test->addTestCase(new Doctrine_Table_TestCase());
$test
->
addTestCase
(
new
Doctrine_UnitOfWork_TestCase
());
$test
->
addTestCase
(
new
Doctrine_UnitOfWork_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Connection_Transaction_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Connection_Transaction_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Collection_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Collection_TestCase
());
// Relation handling
// Relation handling
$test
->
addTestCase
(
new
Doctrine_Relation_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Relation_TestCase
());
...
@@ -174,9 +189,9 @@ $test->addTestCase(new Doctrine_Query_IdentifierQuoting_TestCase());
...
@@ -174,9 +189,9 @@ $test->addTestCase(new Doctrine_Query_IdentifierQuoting_TestCase());
$test
->
addTestCase
(
new
Doctrine_Query_Update_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Query_Update_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Query_AggregateValue_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Query_AggregateValue_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Query_Select_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Query_Select_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Query_Expression_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Query_Having_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Query_JoinCondition_TestCase
());
// Cache tests
// Cache tests
//$test->addTestCase(new Doctrine_Cache_Query_SqliteTestCase());
//$test->addTestCase(new Doctrine_Cache_Query_SqliteTestCase());
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment