init
This commit is contained in:
23
vendor/codeception/specify/tests/_support/SpecifyUnitTest.php
vendored
Normal file
23
vendor/codeception/specify/tests/_support/SpecifyUnitTest.php
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
class SpecifyUnitTest extends \PHPUnit_Framework_TestCase
|
||||
{
|
||||
use Codeception\Specify;
|
||||
|
||||
private $private = true;
|
||||
|
||||
/**
|
||||
* @param mixed $private
|
||||
*/
|
||||
protected function setPrivateProperty($private)
|
||||
{
|
||||
$this->private = $private;
|
||||
}
|
||||
/**
|
||||
* @return mixed
|
||||
*/
|
||||
protected function getPrivateProperty()
|
||||
{
|
||||
return $this->private;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user