assertNotNull($instance); $this->assertInstanceOf('Piwik\Timer', $instance); } public function testCreatingInvalidClassThrows() { $this->expectException(\Exception::class); $this->expectExceptionMessage('Invalid class ID'); BaseFactory::factory("This\\Class\\Does\\Not\\Exist"); } }