mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-12 20:32:15 +00:00
45 lines
1013 B
PHP
45 lines
1013 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Tests;
|
|
|
|
use GildedRose\GildedRose;
|
|
use GildedRose\Item;
|
|
use PHPUnit\Framework\TestCase;
|
|
use ApprovalTests\Approvals;
|
|
|
|
/**
|
|
* This unit test uses [Approvals](https://github.com/approvals/ApprovalTests.php).
|
|
*
|
|
* There are two test cases here with different styles:
|
|
* <li>"foo" is more similar to the unit test from the 'Java' version
|
|
* <li>"thirtyDays" is more similar to the TextTest from the 'Java' version
|
|
*
|
|
* I suggest choosing one style to develop and deleting the other.
|
|
*/
|
|
class ApprovalTest extends TestCase
|
|
{
|
|
|
|
public function testFoo(): void
|
|
{
|
|
$items = [new Item('foo', 0, 0)];
|
|
$app = new GildedRose($items);
|
|
$app->updateQuality();
|
|
|
|
Approvals::verifyList($items);
|
|
}
|
|
|
|
public function testThirtyDays(): void
|
|
{
|
|
ob_start();
|
|
|
|
$argv = ["", "30"];
|
|
include(__DIR__.'/../fixtures/texttest_fixture.php');
|
|
|
|
$output = ob_get_clean();
|
|
|
|
Approvals::approveString($output);
|
|
}
|
|
}
|