You are here

public function BankAccountTest::testBalanceCannotBecomeNegative2 in Zircon Profile 8

Same name in this branch
  1. 8 vendor/phpunit/phpunit/tests/_files/BankAccountTest.php \BankAccountTest::testBalanceCannotBecomeNegative2()
  2. 8 vendor/phpunit/php-code-coverage/tests/_files/BankAccountTest.php \BankAccountTest::testBalanceCannotBecomeNegative2()
Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/tests/_files/BankAccountTest.php \BankAccountTest::testBalanceCannotBecomeNegative2()
  2. 8.0 vendor/phpunit/php-code-coverage/tests/_files/BankAccountTest.php \BankAccountTest::testBalanceCannotBecomeNegative2()

@covers BankAccount::depositMoney @group balanceCannotBecomeNegative @group specification

File

vendor/phpunit/phpunit/tests/_files/BankAccountTest.php, line 58

Class

BankAccountTest
Tests for the BankAccount class.

Code

public function testBalanceCannotBecomeNegative2() {
  try {
    $this->ba
      ->depositMoney(-1);
  } catch (BankAccountException $e) {
    $this
      ->assertEquals(0, $this->ba
      ->getBalance());
    return;
  }
  $this
    ->fail();
}