Slide 49
Slide 49 text
London Style
Bank Kata
class StatementPrinterTest extends TestCase
{
public function testPrint_transactions_in_descending_order()
{
$this->console->expects(self::exactly(3))
->method('printLine')
->withConsecutive(
['DATE | AMOUNT | BALANCE'],
['07/12/2023 | -100 | 900'],
['06/12/2023 | 1000 | 1000'],
);
$this->statementPrinter->print([
new Transaction(1000, '06/12/2023'),
new Transaction(-100, '07/12/2023'),
]);
}
}