public function BankAccountTest::testBalanceCannotBecomeNegative in Zircon Profile 8
Same name in this branch
- 8 vendor/phpunit/phpunit/tests/_files/BankAccountTest.php \BankAccountTest::testBalanceCannotBecomeNegative()
- 8 vendor/phpunit/php-code-coverage/tests/_files/BankAccountTest.php \BankAccountTest::testBalanceCannotBecomeNegative()
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/tests/_files/BankAccountTest.php \BankAccountTest::testBalanceCannotBecomeNegative()
- 8.0 vendor/phpunit/php-code-coverage/tests/_files/BankAccountTest.php \BankAccountTest::testBalanceCannotBecomeNegative()
@covers BankAccount::withdrawMoney
File
- vendor/
phpunit/ php-code-coverage/ tests/ _files/ BankAccountTest.php, line 24
Class
Code
public function testBalanceCannotBecomeNegative() {
try {
$this->ba
->withdrawMoney(1);
} catch (RuntimeException $e) {
$this
->assertEquals(0, $this->ba
->getBalance());
return;
}
$this
->fail();
}