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
6d4e947e
Commit
6d4e947e
authored
Nov 16, 2006
by
zYne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added UnitOfWork test case
parent
b3915b8a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
107 additions
and
0 deletions
+107
-0
UnitOfWorkTestCase.php
tests/UnitOfWorkTestCase.php
+107
-0
No files found.
tests/UnitOfWorkTestCase.php
0 → 100644
View file @
6d4e947e
<?php
require_once
(
"UnitTestCase.php"
);
class
Doctrine_UnitOfWork_TestCase
extends
Doctrine_UnitTestCase
{
private
$correct
=
array
(
"Task"
,
"ResourceType"
,
"Resource"
,
"Assignment"
,
"ResourceReference"
);
private
$correct2
=
array
(
0
=>
'Resource'
,
1
=>
'Task'
,
2
=>
'ResourceType'
,
3
=>
'Assignment'
,
4
=>
'ResourceReference'
,
);
public
function
testbuildFlushTree
()
{
$task
=
new
Task
();
$tree
=
$this
->
unitOfWork
->
buildFlushTree
(
array
(
"Task"
));
$this
->
assertEqual
(
$tree
,
array
(
"Resource"
,
"Task"
,
"Assignment"
));
$tree
=
$this
->
unitOfWork
->
buildFlushTree
(
array
(
"Task"
,
"Resource"
));
$this
->
assertEqual
(
$tree
,
$this
->
correct
);
$tree
=
$this
->
unitOfWork
->
buildFlushTree
(
array
(
"Task"
,
"Assignment"
,
"Resource"
));
$this
->
assertEqual
(
$tree
,
$this
->
correct
);
$tree
=
$this
->
unitOfWork
->
buildFlushTree
(
array
(
"Assignment"
,
"Task"
,
"Resource"
));
$this
->
assertEqual
(
$tree
,
$this
->
correct2
);
}
public
function
testbuildFlushTree2
()
{
$this
->
correct
=
array
(
"Forum_Category"
,
"Forum_Board"
,
"Forum_Thread"
);
$tree
=
$this
->
unitOfWork
->
buildFlushTree
(
array
(
"Forum_Board"
));
$this
->
assertEqual
(
$tree
,
$this
->
correct
);
$tree
=
$this
->
unitOfWork
->
buildFlushTree
(
array
(
"Forum_Category"
,
"Forum_Board"
));
$this
->
assertEqual
(
$tree
,
$this
->
correct
);
}
public
function
testBuildFlushTree3
()
{
$this
->
correct
=
array
(
"Forum_Category"
,
"Forum_Board"
,
"Forum_Thread"
,
"Forum_Entry"
);
$tree
=
$this
->
unitOfWork
->
buildFlushTree
(
array
(
"Forum_Entry"
,
"Forum_Board"
));
$this
->
assertEqual
(
$tree
,
$this
->
correct
);
$tree
=
$this
->
unitOfWork
->
buildFlushTree
(
array
(
"Forum_Board"
,
"Forum_Entry"
));
$this
->
assertEqual
(
$tree
,
$this
->
correct
);
}
public
function
testBuildFlushTree4
()
{
$tree
=
$this
->
unitOfWork
->
buildFlushTree
(
array
(
"Forum_Thread"
,
"Forum_Board"
));
$this
->
assertEqual
(
$tree
,
$this
->
correct
);
$tree
=
$this
->
unitOfWork
->
buildFlushTree
(
array
(
"Forum_Board"
,
"Forum_Thread"
));
$this
->
assertEqual
(
$tree
,
$this
->
correct
);
}
public
function
testBuildFlushTree5
()
{
$tree
=
$this
->
unitOfWork
->
buildFlushTree
(
array
(
"Forum_Board"
,
"Forum_Thread"
,
"Forum_Entry"
));
$this
->
assertEqual
(
$tree
,
$this
->
correct
);
$tree
=
$this
->
unitOfWork
->
buildFlushTree
(
array
(
"Forum_Board"
,
"Forum_Entry"
,
"Forum_Thread"
));
$this
->
assertEqual
(
$tree
,
$this
->
correct
);
}
public
function
testBuildFlushTree6
()
{
$tree
=
$this
->
unitOfWork
->
buildFlushTree
(
array
(
"Forum_Entry"
,
"Forum_Board"
,
"Forum_Thread"
));
$this
->
assertEqual
(
$tree
,
$this
->
correct
);
$tree
=
$this
->
unitOfWork
->
buildFlushTree
(
array
(
"Forum_Entry"
,
"Forum_Thread"
,
"Forum_Board"
));
$this
->
assertEqual
(
$tree
,
$this
->
correct
);
}
public
function
testBuildFlushTree7
()
{
$tree
=
$this
->
unitOfWork
->
buildFlushTree
(
array
(
"Forum_Thread"
,
"Forum_Board"
,
"Forum_Entry"
));
$this
->
assertEqual
(
$tree
,
$this
->
correct
);
$tree
=
$this
->
unitOfWork
->
buildFlushTree
(
array
(
"Forum_Thread"
,
"Forum_Entry"
,
"Forum_Board"
));
$this
->
assertEqual
(
$tree
,
$this
->
correct
);
}
public
function
testBuildFlushTree8
()
{
$tree
=
$this
->
unitOfWork
->
buildFlushTree
(
array
(
"Forum_Board"
,
"Forum_Thread"
,
"Forum_Category"
));
$this
->
assertEqual
(
$tree
,
$this
->
correct
);
$tree
=
$this
->
unitOfWork
->
buildFlushTree
(
array
(
"Forum_Category"
,
"Forum_Thread"
,
"Forum_Board"
));
$this
->
assertEqual
(
$tree
,
$this
->
correct
);
$tree
=
$this
->
unitOfWork
->
buildFlushTree
(
array
(
"Forum_Thread"
,
"Forum_Board"
,
"Forum_Category"
));
$this
->
assertEqual
(
$tree
,
$this
->
correct
);
}
public
function
testBuildFlushTree9
()
{
$tree
=
$this
->
unitOfWork
->
buildFlushTree
(
array
(
"Forum_Board"
,
"Forum_Thread"
,
"Forum_Category"
,
"Forum_Entry"
));
$this
->
assertEqual
(
$tree
,
$this
->
correct
);
$tree
=
$this
->
unitOfWork
->
buildFlushTree
(
array
(
"Forum_Board"
,
"Forum_Thread"
,
"Forum_Entry"
,
"Forum_Category"
));
$this
->
assertEqual
(
$tree
,
$this
->
correct
);
$tree
=
$this
->
unitOfWork
->
buildFlushTree
(
array
(
"Forum_Board"
,
"Forum_Category"
,
"Forum_Thread"
,
"Forum_Entry"
));
$this
->
assertEqual
(
$tree
,
$this
->
correct
);
}
public
function
testBuildFlushTree10
()
{
$tree
=
$this
->
unitOfWork
->
buildFlushTree
(
array
(
"Forum_Entry"
,
"Forum_Thread"
,
"Forum_Board"
,
"Forum_Category"
));
$this
->
assertEqual
(
$tree
,
$this
->
correct
);
$tree
=
$this
->
unitOfWork
->
buildFlushTree
(
array
(
"Forum_Entry"
,
"Forum_Thread"
,
"Forum_Category"
,
"Forum_Board"
));
$this
->
assertEqual
(
$tree
,
$this
->
correct
);
$tree
=
$this
->
unitOfWork
->
buildFlushTree
(
array
(
"Forum_Entry"
,
"Forum_Category"
,
"Forum_Board"
,
"Forum_Thread"
));
$this
->
assertEqual
(
$tree
,
$this
->
correct
);
}
public
function
testBuildFlushTree11
()
{
$tree
=
$this
->
unitOfWork
->
buildFlushTree
(
array
(
"Forum_Thread"
,
"Forum_Category"
,
"Forum_Board"
,
"Forum_Entry"
));
$this
->
assertEqual
(
$tree
,
$this
->
correct
);
$tree
=
$this
->
unitOfWork
->
buildFlushTree
(
array
(
"Forum_Thread"
,
"Forum_Entry"
,
"Forum_Category"
,
"Forum_Board"
));
$this
->
assertEqual
(
$tree
,
$this
->
correct
);
$tree
=
$this
->
unitOfWork
->
buildFlushTree
(
array
(
"Forum_Thread"
,
"Forum_Board"
,
"Forum_Entry"
,
"Forum_Category"
));
$this
->
assertEqual
(
$tree
,
$this
->
correct
);
}
public
function
testBuildFlushTree12
()
{
$tree
=
$this
->
unitOfWork
->
buildFlushTree
(
array
(
"Forum_Category"
,
"Forum_Entry"
,
"Forum_Board"
,
"Forum_Thread"
));
$this
->
assertEqual
(
$tree
,
$this
->
correct
);
$tree
=
$this
->
unitOfWork
->
buildFlushTree
(
array
(
"Forum_Category"
,
"Forum_Thread"
,
"Forum_Entry"
,
"Forum_Board"
));
$this
->
assertEqual
(
$tree
,
$this
->
correct
);
$tree
=
$this
->
unitOfWork
->
buildFlushTree
(
array
(
"Forum_Category"
,
"Forum_Board"
,
"Forum_Thread"
,
"Forum_Entry"
));
$this
->
assertEqual
(
$tree
,
$this
->
correct
);
}
}
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