public function testStringEqualsHash()
 {
     $values = array(1, 2, 3);
     $hash = PivotKey::hash($values);
     $key = new PivotKey($values);
     $stringValue = $key->__toString();
     $this->assertSame($hash, $stringValue, "Expect __toString to return the hash");
 }