SensioLabs\Insight\Sdk\Tests\ApiTest::testCreateProjectOk PHP Method

testCreateProjectOk() public method

public testCreateProjectOk ( )
    public function testCreateProjectOk()
    {
        $project = new Project();
        $this->pluginMockResponse->addResponse($this->createResponse('project'));
        $project = $this->api->createProject($project);
        $this->assertInstanceOf('SensioLabs\\Insight\\Sdk\\Model\\Project', $project);
    }