Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
don
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
25
Issues
25
List
Boards
Labels
Service Desk
Milestones
Merge Requests
5
Merge Requests
5
Operations
Operations
Incidents
Environments
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
LQDN Adminsys
don
Commits
cb7c9846
Commit
cb7c9846
authored
Jul 21, 2018
by
Mindiell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Suppression des fichiers générés par les tests
parent
e07ad64a
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
2858 deletions
+0
-2858
tests/_support/_generated/AcceptanceTesterActions.php
tests/_support/_generated/AcceptanceTesterActions.php
+0
-2382
tests/_support/_generated/FunctionalTesterActions.php
tests/_support/_generated/FunctionalTesterActions.php
+0
-16
tests/_support/_generated/UnitTesterActions.php
tests/_support/_generated/UnitTesterActions.php
+0
-460
No files found.
tests/_support/_generated/AcceptanceTesterActions.php
deleted
100644 → 0
View file @
e07ad64a
This diff is collapsed.
Click to expand it.
tests/_support/_generated/FunctionalTesterActions.php
deleted
100644 → 0
View file @
e07ad64a
<?php
//[STAMP] c716f1abc746eb1fd8819b74509e3159
namespace
_generated
;
// This class was automatically generated by build task
// You should not change it manually as it will be overwritten on next build
// @codingStandardsIgnoreFile
trait
FunctionalTesterActions
{
/**
* @return \Codeception\Scenario
*/
abstract
protected
function
getScenario
();
}
tests/_support/_generated/UnitTesterActions.php
deleted
100644 → 0
View file @
e07ad64a
<?php
//[STAMP] 8f32029e1b73bcd2cf1109d17c7d8cd3
namespace
_generated
;
// This class was automatically generated by build task
// You should not change it manually as it will be overwritten on next build
// @codingStandardsIgnoreFile
use
Codeception\Module\Asserts
;
use
Helper\Unit
;
trait
UnitTesterActions
{
/**
* @return \Codeception\Scenario
*/
abstract
protected
function
getScenario
();
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Checks that two variables are equal.
*
* @param $expected
* @param $actual
* @param string $message
* @see \Codeception\Module\Asserts::assertEquals()
*/
public
function
assertEquals
(
$expected
,
$actual
,
$message
=
null
)
{
return
$this
->
getScenario
()
->
runStep
(
new
\
Codeception\Step\Action
(
'assertEquals'
,
func_get_args
()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Checks that two variables are not equal
*
* @param $expected
* @param $actual
* @param string $message
* @see \Codeception\Module\Asserts::assertNotEquals()
*/
public
function
assertNotEquals
(
$expected
,
$actual
,
$message
=
null
)
{
return
$this
->
getScenario
()
->
runStep
(
new
\
Codeception\Step\Action
(
'assertNotEquals'
,
func_get_args
()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Checks that two variables are same
*
* @param $expected
* @param $actual
* @param string $message
* @return mixed|void
* @see \Codeception\Module\Asserts::assertSame()
*/
public
function
assertSame
(
$expected
,
$actual
,
$message
=
null
)
{
return
$this
->
getScenario
()
->
runStep
(
new
\
Codeception\Step\Action
(
'assertSame'
,
func_get_args
()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Checks that two variables are not same
*
* @param $expected
* @param $actual
* @param string $message
* @see \Codeception\Module\Asserts::assertNotSame()
*/
public
function
assertNotSame
(
$expected
,
$actual
,
$message
=
null
)
{
return
$this
->
getScenario
()
->
runStep
(
new
\
Codeception\Step\Action
(
'assertNotSame'
,
func_get_args
()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Checks that actual is greater than expected
*
* @param $expected
* @param $actual
* @param string $message
* @see \Codeception\Module\Asserts::assertGreaterThan()
*/
public
function
assertGreaterThan
(
$expected
,
$actual
,
$message
=
null
)
{
return
$this
->
getScenario
()
->
runStep
(
new
\
Codeception\Step\Action
(
'assertGreaterThan'
,
func_get_args
()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Checks that actual is greater or equal than expected
*
* @param $expected
* @param $actual
* @param string $message
* @see \Codeception\Module\Asserts::assertGreaterThanOrEqual()
*/
public
function
assertGreaterThanOrEqual
(
$expected
,
$actual
,
$message
=
null
)
{
return
$this
->
getScenario
()
->
runStep
(
new
\
Codeception\Step\Action
(
'assertGreaterThanOrEqual'
,
func_get_args
()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Checks that actual is less than expected
*
* @param $expected
* @param $actual
* @param string $message
* @see \Codeception\Module\Asserts::assertLessThan()
*/
public
function
assertLessThan
(
$expected
,
$actual
,
$message
=
null
)
{
return
$this
->
getScenario
()
->
runStep
(
new
\
Codeception\Step\Action
(
'assertLessThan'
,
func_get_args
()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Checks that actual is less or equal than expected
*
* @param $expected
* @param $actual
* @param string $message
* @see \Codeception\Module\Asserts::assertLessThanOrEqual()
*/
public
function
assertLessThanOrEqual
(
$expected
,
$actual
,
$message
=
null
)
{
return
$this
->
getScenario
()
->
runStep
(
new
\
Codeception\Step\Action
(
'assertLessThanOrEqual'
,
func_get_args
()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Checks that haystack contains needle
*
* @param $needle
* @param $haystack
* @param string $message
* @see \Codeception\Module\Asserts::assertContains()
*/
public
function
assertContains
(
$needle
,
$haystack
,
$message
=
null
)
{
return
$this
->
getScenario
()
->
runStep
(
new
\
Codeception\Step\Action
(
'assertContains'
,
func_get_args
()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Checks that haystack doesn't contain needle.
*
* @param $needle
* @param $haystack
* @param string $message
* @see \Codeception\Module\Asserts::assertNotContains()
*/
public
function
assertNotContains
(
$needle
,
$haystack
,
$message
=
null
)
{
return
$this
->
getScenario
()
->
runStep
(
new
\
Codeception\Step\Action
(
'assertNotContains'
,
func_get_args
()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Checks that string match with pattern
*
* @param string $pattern
* @param string $string
* @param string $message
* @see \Codeception\Module\Asserts::assertRegExp()
*/
public
function
assertRegExp
(
$pattern
,
$string
,
$message
=
null
)
{
return
$this
->
getScenario
()
->
runStep
(
new
\
Codeception\Step\Action
(
'assertRegExp'
,
func_get_args
()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Checks that string not match with pattern
*
* @param string $pattern
* @param string $string
* @param string $message
* @see \Codeception\Module\Asserts::assertNotRegExp()
*/
public
function
assertNotRegExp
(
$pattern
,
$string
,
$message
=
null
)
{
return
$this
->
getScenario
()
->
runStep
(
new
\
Codeception\Step\Action
(
'assertNotRegExp'
,
func_get_args
()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Checks that variable is empty.
*
* @param $actual
* @param string $message
* @see \Codeception\Module\Asserts::assertEmpty()
*/
public
function
assertEmpty
(
$actual
,
$message
=
null
)
{
return
$this
->
getScenario
()
->
runStep
(
new
\
Codeception\Step\Action
(
'assertEmpty'
,
func_get_args
()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Checks that variable is not empty.
*
* @param $actual
* @param string $message
* @see \Codeception\Module\Asserts::assertNotEmpty()
*/
public
function
assertNotEmpty
(
$actual
,
$message
=
null
)
{
return
$this
->
getScenario
()
->
runStep
(
new
\
Codeception\Step\Action
(
'assertNotEmpty'
,
func_get_args
()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Checks that variable is NULL
*
* @param $actual
* @param string $message
* @see \Codeception\Module\Asserts::assertNull()
*/
public
function
assertNull
(
$actual
,
$message
=
null
)
{
return
$this
->
getScenario
()
->
runStep
(
new
\
Codeception\Step\Action
(
'assertNull'
,
func_get_args
()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Checks that variable is not NULL
*
* @param $actual
* @param string $message
* @see \Codeception\Module\Asserts::assertNotNull()
*/
public
function
assertNotNull
(
$actual
,
$message
=
null
)
{
return
$this
->
getScenario
()
->
runStep
(
new
\
Codeception\Step\Action
(
'assertNotNull'
,
func_get_args
()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Checks that condition is positive.
*
* @param $condition
* @param string $message
* @see \Codeception\Module\Asserts::assertTrue()
*/
public
function
assertTrue
(
$condition
,
$message
=
null
)
{
return
$this
->
getScenario
()
->
runStep
(
new
\
Codeception\Step\Action
(
'assertTrue'
,
func_get_args
()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Checks that condition is negative.
*
* @param $condition
* @param string $message
* @see \Codeception\Module\Asserts::assertFalse()
*/
public
function
assertFalse
(
$condition
,
$message
=
null
)
{
return
$this
->
getScenario
()
->
runStep
(
new
\
Codeception\Step\Action
(
'assertFalse'
,
func_get_args
()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Checks if file exists
*
* @param string $filename
* @param string $message
* @see \Codeception\Module\Asserts::assertFileExists()
*/
public
function
assertFileExists
(
$filename
,
$message
=
null
)
{
return
$this
->
getScenario
()
->
runStep
(
new
\
Codeception\Step\Action
(
'assertFileExists'
,
func_get_args
()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Checks if file doesn't exist
*
* @param string $filename
* @param string $message
* @see \Codeception\Module\Asserts::assertFileNotExists()
*/
public
function
assertFileNotExists
(
$filename
,
$message
=
null
)
{
return
$this
->
getScenario
()
->
runStep
(
new
\
Codeception\Step\Action
(
'assertFileNotExists'
,
func_get_args
()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* @param $expected
* @param $actual
* @param $description
* @see \Codeception\Module\Asserts::assertGreaterOrEquals()
*/
public
function
assertGreaterOrEquals
(
$expected
,
$actual
,
$description
=
null
)
{
return
$this
->
getScenario
()
->
runStep
(
new
\
Codeception\Step\Action
(
'assertGreaterOrEquals'
,
func_get_args
()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* @param $expected
* @param $actual
* @param $description
* @see \Codeception\Module\Asserts::assertLessOrEquals()
*/
public
function
assertLessOrEquals
(
$expected
,
$actual
,
$description
=
null
)
{
return
$this
->
getScenario
()
->
runStep
(
new
\
Codeception\Step\Action
(
'assertLessOrEquals'
,
func_get_args
()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* @param $actual
* @param $description
* @see \Codeception\Module\Asserts::assertIsEmpty()
*/
public
function
assertIsEmpty
(
$actual
,
$description
=
null
)
{
return
$this
->
getScenario
()
->
runStep
(
new
\
Codeception\Step\Action
(
'assertIsEmpty'
,
func_get_args
()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* @param $key
* @param $actual
* @param $description
* @see \Codeception\Module\Asserts::assertArrayHasKey()
*/
public
function
assertArrayHasKey
(
$key
,
$actual
,
$description
=
null
)
{
return
$this
->
getScenario
()
->
runStep
(
new
\
Codeception\Step\Action
(
'assertArrayHasKey'
,
func_get_args
()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* @param $key
* @param $actual
* @param $description
* @see \Codeception\Module\Asserts::assertArrayNotHasKey()
*/
public
function
assertArrayNotHasKey
(
$key
,
$actual
,
$description
=
null
)
{
return
$this
->
getScenario
()
->
runStep
(
new
\
Codeception\Step\Action
(
'assertArrayNotHasKey'
,
func_get_args
()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* @param $class
* @param $actual
* @param $description
* @see \Codeception\Module\Asserts::assertInstanceOf()
*/
public
function
assertInstanceOf
(
$class
,
$actual
,
$description
=
null
)
{
return
$this
->
getScenario
()
->
runStep
(
new
\
Codeception\Step\Action
(
'assertInstanceOf'
,
func_get_args
()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* @param $class
* @param $actual
* @param $description
* @see \Codeception\Module\Asserts::assertNotInstanceOf()
*/
public
function
assertNotInstanceOf
(
$class
,
$actual
,
$description
=
null
)
{
return
$this
->
getScenario
()
->
runStep
(
new
\
Codeception\Step\Action
(
'assertNotInstanceOf'
,
func_get_args
()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* @param $type
* @param $actual
* @param $description
* @see \Codeception\Module\Asserts::assertInternalType()
*/
public
function
assertInternalType
(
$type
,
$actual
,
$description
=
null
)
{
return
$this
->
getScenario
()
->
runStep
(
new
\
Codeception\Step\Action
(
'assertInternalType'
,
func_get_args
()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Fails the test with message.
*
* @param $message
* @see \Codeception\Module\Asserts::fail()
*/
public
function
fail
(
$message
)
{
return
$this
->
getScenario
()
->
runStep
(
new
\
Codeception\Step\Action
(
'fail'
,
func_get_args
()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Handles and checks exception called inside callback function.
* Either exception class name or exception instance should be provided.
*
* ```php
* <?php
* $I->expectException(MyException::class, function() {
* $this->doSomethingBad();
* });
*
* $I->expectException(new MyException(), function() {
* $this->doSomethingBad();
* });
* ```
* If you want to check message or exception code, you can pass them with exception instance:
* ```php
* <?php
* // will check that exception MyException is thrown with "Don't do bad things" message
* $I->expectException(new MyException("Don't do bad things"), function() {
* $this->doSomethingBad();
* });
* ```
*
* @param $exception string or \Exception
* @param $callback
* @see \Codeception\Module\Asserts::expectException()
*/
public
function
expectException
(
$exception
,
$callback
)
{
return
$this
->
getScenario
()
->
runStep
(
new
\
Codeception\Step\Action
(
'expectException'
,
func_get_args
()));
}
}
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