public function testSetType() { $this->account->setType(Account::TYPE_TRADITIONAL_IRA); $this->assertEquals(Account::TYPE_TRADITIONAL_IRA, $this->account->getType()); $this->assertFalse($this->account->isTaxable()); $this->assertTrue($this->account->isTraditionalIra()); }