/** * @test */ public function shouldAllowGetPreviouslySetBrand() { $card = new CreditCard(); $card->setBrand('theBrand'); $this->assertEquals('theBrand', $card->getBrand()); }