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
8303cdb9
Commit
8303cdb9
authored
Jan 27, 2007
by
zYne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated datadict test cases
parent
511a961d
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
FirebirdTestCase.php
tests/DataDict/FirebirdTestCase.php
+1
-1
MssqlTestCase.php
tests/DataDict/MssqlTestCase.php
+1
-1
MysqlTestCase.php
tests/DataDict/MysqlTestCase.php
+1
-1
OracleTestCase.php
tests/DataDict/OracleTestCase.php
+1
-1
PgsqlTestCase.php
tests/DataDict/PgsqlTestCase.php
+1
-1
No files found.
tests/DataDict/FirebirdTestCase.php
View file @
8303cdb9
...
...
@@ -45,7 +45,7 @@ class Doctrine_DataDict_Firebird_TestCase extends Doctrine_UnitTestCase
try
{
$this
->
dataDict
->
getPortableDeclaration
(
array
(
'type'
=>
'unknown'
));
$this
->
fail
();
}
catch
(
Doctrine_DataDict_
Firebird_
Exception
$e
)
{
}
catch
(
Doctrine_DataDict_Exception
$e
)
{
$this
->
pass
();
}
}
...
...
tests/DataDict/MssqlTestCase.php
View file @
8303cdb9
...
...
@@ -37,7 +37,7 @@ class Doctrine_DataDict_Mssql_TestCase extends Doctrine_UnitTestCase
try
{
$this
->
dataDict
->
getPortableDeclaration
(
array
(
'type'
=>
'some_unknown_type'
));
$this
->
fail
();
}
catch
(
Doctrine_DataDict_
Mssql_
Exception
$e
)
{
}
catch
(
Doctrine_DataDict_Exception
$e
)
{
$this
->
pass
();
}
}
...
...
tests/DataDict/MysqlTestCase.php
View file @
8303cdb9
...
...
@@ -44,7 +44,7 @@ class Doctrine_DataDict_Mysql_TestCase extends Doctrine_UnitTestCase {
try
{
$this
->
dataDict
->
getPortableDeclaration
(
array
(
'type'
=>
'some_unknown_type'
));
$this
->
fail
();
}
catch
(
Doctrine_DataDict_
Mysql_
Exception
$e
)
{
}
catch
(
Doctrine_DataDict_Exception
$e
)
{
$this
->
pass
();
}
}
...
...
tests/DataDict/OracleTestCase.php
View file @
8303cdb9
...
...
@@ -36,7 +36,7 @@ class Doctrine_DataDict_Oracle_TestCase extends Doctrine_UnitTestCase {
try
{
$this
->
dataDict
->
getPortableDeclaration
(
array
(
'type'
=>
'some_unknown_type'
));
$this
->
fail
();
}
catch
(
Doctrine_DataDict_
Oracle_
Exception
$e
)
{
}
catch
(
Doctrine_DataDict_Exception
$e
)
{
$this
->
pass
();
}
}
...
...
tests/DataDict/PgsqlTestCase.php
View file @
8303cdb9
...
...
@@ -41,7 +41,7 @@ class Doctrine_DataDict_Pgsql_TestCase extends Doctrine_UnitTestCase
try
{
$this
->
dataDict
->
getPortableDeclaration
(
array
(
'type'
=>
'some_unknown_type'
));
$this
->
fail
();
}
catch
(
Doctrine_DataDict_
Pgsql_
Exception
$e
)
{
}
catch
(
Doctrine_DataDict_Exception
$e
)
{
$this
->
pass
();
}
}
...
...
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