Example #1
0
 public function test_connect_accept_set_isConnected_marker()
 {
     $mock = $this->scaffoldMock();
     $client = new LdxClient($mock);
     $mock->getMockController()->LogIn = true;
     $this->boolean($client->isConnected())->isFalse();
     $client->connect('testUsername', 'testPassword');
     $this->boolean($client->isConnected())->isTrue();
 }