Exemplo n.º 1
0
 public function testCurrentVersion()
 {
     $stub = $this->getMock('\\Phinx\\Db\\Adapter\\PdoAdapter', array(), array(array()));
     $stub->expects($this->any())->method('getVersions')->will($this->returnValue(array('20110301080000')));
     $this->environment->setAdapter($stub);
     $this->assertEquals('20110301080000', $this->environment->getCurrentVersion());
 }