Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
EcomDev_PHPUnit
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Open
EcomDev_PHPUnit
Commits
56e875e5
Commit
56e875e5
authored
Feb 19, 2013
by
Luke Mills
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev-hotfix/fix-typo' into dev
parents
cf05d760
8c3bb90d
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
lib/EcomDev/PHPUnit/Helper.php
lib/EcomDev/PHPUnit/Helper.php
+4
-4
lib/EcomDev/PHPUnit/Helper/Abstract.php
lib/EcomDev/PHPUnit/Helper/Abstract.php
+1
-1
lib/EcomDev/PHPUnit/Helper/Listener/Interface.php
lib/EcomDev/PHPUnit/Helper/Listener/Interface.php
+1
-1
No files found.
lib/EcomDev/PHPUnit/Helper.php
View file @
56e875e5
...
@@ -9,7 +9,7 @@ class EcomDev_PHPUnit_Helper
...
@@ -9,7 +9,7 @@ class EcomDev_PHPUnit_Helper
/**
/**
* Helpers container
* Helpers container
*
*
* @var EcomDev_PHP
u
nit_Helper_Interface[]
* @var EcomDev_PHP
U
nit_Helper_Interface[]
*/
*/
protected
static
$helpers
=
array
();
protected
static
$helpers
=
array
();
...
@@ -19,12 +19,12 @@ class EcomDev_PHPUnit_Helper
...
@@ -19,12 +19,12 @@ class EcomDev_PHPUnit_Helper
* If $position is specified, it will use value
* If $position is specified, it will use value
* from before or after key as related helper
* from before or after key as related helper
*
*
* @param EcomDev_PHP
u
nit_Helper_Interface $helper
* @param EcomDev_PHP
U
nit_Helper_Interface $helper
* @param bool|array $position
* @param bool|array $position
*
*
* @throws RuntimeException
* @throws RuntimeException
*/
*/
public
static
function
add
(
EcomDev_PHP
u
nit_Helper_Interface
$helper
,
$position
=
false
)
public
static
function
add
(
EcomDev_PHP
U
nit_Helper_Interface
$helper
,
$position
=
false
)
{
{
if
(
$position
===
false
)
{
if
(
$position
===
false
)
{
self
::
$helpers
[]
=
$helper
;
self
::
$helpers
[]
=
$helper
;
...
@@ -82,7 +82,7 @@ class EcomDev_PHPUnit_Helper
...
@@ -82,7 +82,7 @@ class EcomDev_PHPUnit_Helper
* if helper for action was not found it returns false
* if helper for action was not found it returns false
*
*
* @param $action
* @param $action
* @return bool|EcomDev_PHP
u
nit_Helper_Interface
* @return bool|EcomDev_PHP
U
nit_Helper_Interface
*/
*/
public
static
function
getByAction
(
$action
)
public
static
function
getByAction
(
$action
)
{
{
...
...
lib/EcomDev/PHPUnit/Helper/Abstract.php
View file @
56e875e5
...
@@ -19,7 +19,7 @@
...
@@ -19,7 +19,7 @@
/**
/**
* Base helper implementation
* Base helper implementation
*/
*/
abstract
class
EcomDev_PHPUnit_Helper_Abstract
implements
EcomDev_PHP
u
nit_Helper_Interface
abstract
class
EcomDev_PHPUnit_Helper_Abstract
implements
EcomDev_PHP
U
nit_Helper_Interface
{
{
/**
/**
* @var PHPUnit_Framework_TestCase
* @var PHPUnit_Framework_TestCase
...
...
lib/EcomDev/PHPUnit/Helper/Listener/Interface.php
View file @
56e875e5
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
* These methods are invoked when test setUp() or tearDown() is executed
* These methods are invoked when test setUp() or tearDown() is executed
*
*
*/
*/
interface
EcomDev_PHPUnit_Helper_Listener_Interface
extends
EcomDev_PHP
u
nit_Helper_Interface
interface
EcomDev_PHPUnit_Helper_Listener_Interface
extends
EcomDev_PHP
U
nit_Helper_Interface
{
{
public
function
setUp
();
public
function
setUp
();
...
...
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