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

testApiGetName_ReturnsName() public method

    public function testApiGetName_ReturnsName()
    {
        $args = ['arg1' => 'val1', 'arg2' => 'val2'];
        $runtime = $this->createModel(['parent', 'alias', 'name', $args]);
        $this->assertSame($args, $runtime->getArgs());
    }
RuntimeModelTest