29 $this->fixture = new \TYPO3\CMS\Belog\Domain\Model\LogEntry();
36 $this->assertSame(array(), $this->fixture->getLogData());
43 $this->fixture->setLogData(
'');
44 $this->assertSame(array(), $this->fixture->getLogData());
51 $this->fixture->setLogData(
'foo bar');
52 $this->assertSame(array(), $this->fixture->getLogData());
59 $logData = array(
'foo',
'bar');
60 $this->fixture->setLogData(serialize($logData));
61 $this->assertSame($logData, $this->fixture->getLogData());
68 $this->fixture->setLogData(
new \stdClass());
69 $this->assertSame(array(), $this->fixture->getLogData());
getLogDataForEmptyStringLogDataReturnsEmptyArray()
getLogDataForSerializedArrayReturnsThatArray()
getLogDataInitiallyReturnsEmptyArray()
getLogDataForSerializedObjectReturnsEmptyArray()
getLogDataForGarbageStringLogDataReturnsEmptyArray()