Exemplo n.º 1
0
 public function testNonCompoundKeyId()
 {
     $machine = new Machine($this->store, 'some_table', array('name' => "awesome", "id" => 134, 'other' => 'whut'));
     Phake::when($this->store)->primaryKey('some_table')->thenReturn('id');
     $this->assertEquals(134, $machine->getId());
 }