Example #1
0
 public function testParse()
 {
     $this->obj = $this->getMock('Tmont\\Midi\\Parsing\\DeltaParser', array('getDelta', 'getDeltaChunk'));
     $this->obj->expects($this->once())->method('getDelta')->will($this->returnValue(10));
     $this->obj->expects($this->once())->method('getDeltaChunk')->with(10)->will($this->returnValue('bar'));
     $this->assertEquals('bar', $this->obj->parse());
 }