Text = new TextHelper(new View(null)); } /** * TearDown method * * @return void */ public function tearDown() { parent::tearDown(); unset($this->Text); } /** * Test calling Utility.Text class * * @return void */ public function testParentCall() { $result = $this->Text->abbreviate('FooBar'); $this->assertSame('FooBar', $result); } }