mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 07:47:22 +01:00
Add Initial teamcity support
This commit is contained in:
26
tests/.tests/Failure.php
Normal file
26
tests/.tests/Failure.php
Normal file
@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
it('can fail with comparison', function () {
|
||||
expect(true)->toEqual(false);
|
||||
});
|
||||
|
||||
it('can be ignored because of no assertions', function () {
|
||||
|
||||
});
|
||||
|
||||
it('can be ignored because it is skipped', function () {
|
||||
expect(true)->toBeTrue();
|
||||
})->skip("this is why");
|
||||
|
||||
it('can fail', function () {
|
||||
$this->fail("oh noo");
|
||||
});
|
||||
|
||||
it('is not done yet', function () {
|
||||
|
||||
})->todo();
|
||||
|
||||
todo("build this one.");
|
||||
|
||||
Reference in New Issue
Block a user