@test
As an alternative to prefixing your test method names with test
, you can use the @test
annotation in a method's DocBlock to mark it as a test method.
/** * @test */ public function initialBalanceShouldBe0() { $this->assertEquals(0, $this->ba->getBalance()); }
Please login to continue.