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
a1bed77a
Commit
a1bed77a
authored
Sep 22, 2006
by
pookey
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added boolean test case
parent
222724f7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
1 deletion
+29
-1
EnumTestCase.php
tests/EnumTestCase.php
+26
-0
run.php
tests/run.php
+3
-1
No files found.
tests/EnumTestCase.php
0 → 100644
View file @
a1bed77a
<?php
class
Doctrine_EnumTestCase
extends
Doctrine_UnitTestCase
{
public
function
prepareData
()
{
}
public
function
prepareTables
()
{
$this
->
tables
=
array
(
"EnumTest"
);
parent
::
prepareTables
();
}
public
function
testSet
()
{
$test
=
new
EnumTest
();
$test
->
status
=
'open'
;
$this
->
assertEqual
(
$test
->
status
,
'open'
);
$test
->
save
();
$query
=
new
Doctrine_Query
(
$this
->
connection
);
$ret
=
$query
->
query
(
'FROM EnumTest WHERE EnumTest.status = ?'
,
array
(
'open'
));
$this
->
assertEqual
(
count
(
$ret
),
1
);
$query
=
new
Doctrine_Query
(
$this
->
connection
);
$ret
=
$query
->
query
(
'FROM EnumTest WHERE EnumTest.status = "open"'
);
$this
->
assertEqual
(
count
(
$ret
),
1
);
}
}
?>
tests/run.php
View file @
a1bed77a
...
...
@@ -25,10 +25,11 @@ require_once("FilterTestCase.php");
require_once
(
"ValueHolderTestCase.php"
);
require_once
(
"QueryLimitTestCase.php"
);
require_once
(
"QueryReferenceModelTestCase.php"
);
require_once
(
"DBTestCase.php"
);
//
require_once("DBTestCase.php");
require_once
(
"SchemaTestCase.php"
);
require_once
(
"ImportTestCase.php"
);
require_once
(
"BooleanTestCase.php"
);
require_once
(
"EnumTestCase.php"
);
error_reporting
(
E_ALL
);
...
...
@@ -85,6 +86,7 @@ $test->addTestCase(new Doctrine_Query_ReferenceModel_TestCase());
$test
->
addTestCase
(
new
Doctrine_BooleanTestCase
());
$test
->
addTestCase
(
new
Doctrine_EnumTestCase
());
//$test->addTestCase(new Doctrine_Cache_FileTestCase());
//$test->addTestCase(new Doctrine_Cache_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