Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Sign in
Toggle navigation
S
solarium
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
common
solarium
Commits
1035216c
Commit
1035216c
authored
May 09, 2011
by
Bas de Nooijer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- unittest improvements
parent
326d0a65
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
tests/Solarium/Plugin/AbstractTest.php
tests/Solarium/Plugin/AbstractTest.php
+8
-8
No files found.
tests/Solarium/Plugin/AbstractTest.php
View file @
1035216c
...
...
@@ -56,14 +56,14 @@ class Solarium_Plugin_AbstractTest extends PHPUnit_Framework_TestCase
public
function
testEventHooks
()
{
$this
->
assertEquals
(
null
,
$this
->
_plugin
->
preCreateRequest
());
$this
->
assertEquals
(
null
,
$this
->
_plugin
->
postCreateRequest
());
$this
->
assertEquals
(
null
,
$this
->
_plugin
->
preExecuteRequest
());
$this
->
assertEquals
(
null
,
$this
->
_plugin
->
postEx
cuteRequest
(
));
$this
->
assertEquals
(
null
,
$this
->
_plugin
->
preExecute
());
$this
->
assertEquals
(
null
,
$this
->
_plugin
->
postExecute
());
$this
->
assertEquals
(
null
,
$this
->
_plugin
->
preCreateResult
());
$this
->
assertEquals
(
null
,
$this
->
_plugin
->
postCreateResult
());
$this
->
assertEquals
(
null
,
$this
->
_plugin
->
preCreateRequest
(
null
));
$this
->
assertEquals
(
null
,
$this
->
_plugin
->
postCreateRequest
(
null
,
null
));
$this
->
assertEquals
(
null
,
$this
->
_plugin
->
preExecuteRequest
(
null
));
$this
->
assertEquals
(
null
,
$this
->
_plugin
->
postEx
ecuteRequest
(
null
,
null
));
$this
->
assertEquals
(
null
,
$this
->
_plugin
->
preExecute
(
null
));
$this
->
assertEquals
(
null
,
$this
->
_plugin
->
postExecute
(
null
,
null
));
$this
->
assertEquals
(
null
,
$this
->
_plugin
->
preCreateResult
(
null
,
null
));
$this
->
assertEquals
(
null
,
$this
->
_plugin
->
postCreateResult
(
null
,
null
,
null
));
}
}
...
...
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