/**
* @covers Imbo\Resource\Images\Query::from
*/
public function testFrom()
{
$value = 123123123;
$this->assertNull($this->query->from());
$this->assertSame($this->query, $this->query->from($value));
$this->assertSame($value, $this->query->from());
}