28 $this->fixture = new \TYPO3\CMS\Extbase\Domain\Model\FileMount();
35 $this->assertSame(
'', $this->fixture->getTitle());
42 $title =
'foobar mount';
43 $this->fixture->setTitle($title);
44 $this->assertSame($title, $this->fixture->getTitle());
51 $this->assertSame(
'', $this->fixture->getPath());
59 $this->fixture->setPath($path);
60 $this->assertSame($path, $this->fixture->getPath());
67 $this->assertFalse($this->fixture->getIsAbsolutePath());
74 $this->fixture->setIsAbsolutePath(TRUE);
75 $this->assertTrue($this->fixture->getIsAbsolutePath());
getIsAbsolutePathInitiallyReturnsFalse()
getTitleInitiallyReturnsEmptyString()
getPathInitiallyReturnsEmptyString()
setIsAbsolutePathCanSetBaseIsAbsolutePathToTrue()