mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-16 14:20:55 +00:00
Merge pull request #534 from kudashevs/feature/fix_formatting
Fix ApprovalTest code formatting
This commit is contained in:
commit
85e18d38c6
@ -21,21 +21,21 @@ use ApprovalTests\Approvals;
|
|||||||
class ApprovalTest extends TestCase
|
class ApprovalTest extends TestCase
|
||||||
{
|
{
|
||||||
|
|
||||||
public function testFoo(): void
|
public function testFoo(): void
|
||||||
{
|
{
|
||||||
$items = [new Item('foo', 0, 0)];
|
$items = [new Item('foo', 0, 0)];
|
||||||
$app = new GildedRose($items);
|
$app = new GildedRose($items);
|
||||||
$app->updateQuality();
|
$app->updateQuality();
|
||||||
|
|
||||||
Approvals::verifyList($items);
|
Approvals::verifyList($items);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testThirtyDays(): void
|
public function testThirtyDays(): void
|
||||||
{
|
{
|
||||||
ob_start();
|
ob_start();
|
||||||
|
|
||||||
$argv = ["", "30"];
|
$argv = ["", "30"];
|
||||||
include(__DIR__.'/../fixtures/texttest_fixture.php');
|
include(__DIR__ . '/../fixtures/texttest_fixture.php');
|
||||||
|
|
||||||
$output = ob_get_clean();
|
$output = ob_get_clean();
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user