BaseTestCase - assertHasNoConstructor() method - asserts that class with given namespace has no constructor

This commit is contained in:
Meritoo
2017-09-21 16:47:41 +02:00
parent 6c70fdd673
commit 318a635ffd
14 changed files with 86 additions and 10 deletions

View File

@@ -8,7 +8,7 @@
namespace Meritoo\Common\Utilities;
use PHPUnit\Framework\TestCase;
use Meritoo\Common\Test\Base\BaseTestCase;
/**
* Tests of the useful regular expressions methods
@@ -16,11 +16,16 @@ use PHPUnit\Framework\TestCase;
* @author Krzysztof Niziol <krzysztof.niziol@meritoo.pl>
* @copyright Meritoo.pl
*/
class RegexTest extends TestCase
class RegexTest extends BaseTestCase
{
private $simpleText;
private $camelCaseText;
public function verifyConstructor()
{
static::assertHasNoConstructor(Regex::class);
}
public function testGetCamelCaseParts()
{
$parts = [];