Extends
lithium\test\Unit
Tests the find 'first' filter on a simple record set.
Returns
voidSource
public function testSimpleFindFirst() {
$result = MockComment::first();
$this->assertTrue($result instanceof Record);
$expected = 'First comment';
$this->assertEqual($expected, $result->text);
}