/**
  * test largest common factor
  */
 public function testLargestCommonFactor2()
 {
     $obj = new CommonOddFactor(3, 5);
     $obj->getLargestCommonFactor();
     $this->assertTrue($obj->largestFactor == 1);
 }