Kraken\_Unit\Runtime\RuntimeModelTest::testApiConstructor_CreatesInstance PHP Method

testApiConstructor_CreatesInstance() public method

    public function testApiConstructor_CreatesInstance()
    {
        $runtime = $this->createModel();
        $this->assertInstanceOf(RuntimeModel::class, $runtime);
        $this->assertInstanceOf(RuntimeModelInterface::class, $runtime);
    }
RuntimeModelTest