Improve pull-request about swimlane description

This commit is contained in:
Frederic Guillot
2015-09-05 12:03:20 -04:00
parent bac18d80f8
commit 512840fe1d
10 changed files with 118 additions and 96 deletions

View File

@@ -37,15 +37,15 @@ class UserApi extends PHPUnit_Framework_TestCase
{
$this->app = new JsonRPC\Client(API_URL);
$this->app->authentication('jsonrpc', API_KEY);
$this->app->debug = true;
// $this->app->debug = true;
$this->admin = new JsonRPC\Client(API_URL);
$this->admin->authentication('admin', 'admin');
$this->admin->debug = true;
// $this->admin->debug = true;
$this->user = new JsonRPC\Client(API_URL);
$this->user->authentication('user', 'password');
$this->user->debug = true;
// $this->user->debug = true;
}
public function testCreateProject()