public function testCheckout()
 {
     $user = $this->dm->find($this->typeVersion, '/functional/versionTestObj');
     $this->dm->checkin($user);
     $this->dm->checkout($user);
     $user->username = '******';
     $this->dm->checkin($user);
     $this->markTestIncomplete('this test has no assertions');
 }