Пример #1
0
 public function testSetGetPid()
 {
     $stats = new Stats();
     $this->assertNull($stats->getPid());
     $stats->setPid(199);
     $this->assertEquals(199, $stats->getPid());
 }