/** owns is true for a condition created by sync else false */
 public void testOwns() {
   final Mutex sync = new Mutex();
   final ConditionObject c = sync.newCondition();
   final Mutex sync2 = new Mutex();
   assertTrue(sync.owns(c));
   assertFalse(sync2.owns(c));
 }