/** * @covers ::assertModel */ public function testAssertModel() { $config = new Config(__NAMESPACE__ . '\\TestModel\\City'); $model = new City(); $other = new Post(); $config->assertModel($model); $this->setExpectedException('InvalidArgumentException'); $config->assertModel($other); }