You are here

protected function TagadelicTagToStringTest::setUp in Tagadelic 7.2

Sets up the fixture, for example, opens a network connection. This method is called before a test is executed.

Overrides TagadelicTagTest::setUp

File

tests/TagadelicTagToStringTest.php, line 16

Class

TagadelicTagToStringTest
Class Tagadelictagtostringtest

Code

protected function setUp() {
  parent::setUp();
  $this->drupal
    ->expects($this
    ->once())
    ->method('l')
    ->will($this
    ->returnValue("<a>blackbeard</a>"));
}