Skip to content

Commit

Permalink
Applied fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
James Dinsdale authored and StyleCIBot committed Feb 7, 2016
1 parent a583946 commit 5d07826
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 9 deletions.
5 changes: 3 additions & 2 deletions tests/_support/AcceptanceTester.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@


/**
* Inherited Methods
* Inherited Methods.
*
* @method void wantToTest($text)
* @method void wantTo($text)
* @method void execute($callable)
Expand All @@ -20,7 +21,7 @@ class AcceptanceTester extends \Codeception\Actor
{
use _generated\AcceptanceTesterActions;

/**
/*
* Define custom actions here
*/
}
5 changes: 3 additions & 2 deletions tests/_support/FunctionalTester.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@


/**
* Inherited Methods
* Inherited Methods.
*
* @method void wantToTest($text)
* @method void wantTo($text)
* @method void execute($callable)
Expand All @@ -20,7 +21,7 @@ class FunctionalTester extends \Codeception\Actor
{
use _generated\FunctionalTesterActions;

/**
/*
* Define custom actions here
*/
}
2 changes: 1 addition & 1 deletion tests/_support/Helper/Acceptance.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?php

namespace Helper;

// here you can define custom actions
// all public methods declared in helper class will be available in $I

class Acceptance extends \Codeception\Module
{

}
2 changes: 1 addition & 1 deletion tests/_support/Helper/Functional.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?php

namespace Helper;

// here you can define custom actions
// all public methods declared in helper class will be available in $I

class Functional extends \Codeception\Module
{

}
2 changes: 1 addition & 1 deletion tests/_support/Helper/Unit.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?php

namespace Helper;

// here you can define custom actions
// all public methods declared in helper class will be available in $I

class Unit extends \Codeception\Module
{

}
5 changes: 3 additions & 2 deletions tests/_support/UnitTester.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@


/**
* Inherited Methods
* Inherited Methods.
*
* @method void wantToTest($text)
* @method void wantTo($text)
* @method void execute($callable)
Expand All @@ -20,7 +21,7 @@ class UnitTester extends \Codeception\Actor
{
use _generated\UnitTesterActions;

/**
/*
* Define custom actions here
*/
}
1 change: 1 addition & 0 deletions tests/acceptance/_bootstrap.php
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
<?php

// Here you can initialize variables that will be available to your tests
1 change: 1 addition & 0 deletions tests/functional/_bootstrap.php
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
<?php

// Here you can initialize variables that will be available to your tests
1 change: 1 addition & 0 deletions tests/unit/_bootstrap.php
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
<?php

// Here you can initialize variables that will be available to your tests

0 comments on commit 5d07826

Please sign in to comment.