scratch – Blame information for rev 120
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
120 | office | 1 | <?php |
2 | |||
3 | namespace Tests\FFMpeg\Unit\Coordinate; |
||
4 | |||
5 | use Tests\FFMpeg\Unit\TestCase; |
||
6 | use FFMpeg\Coordinate\Point; |
||
7 | |||
8 | class PointTest extends TestCase |
||
9 | { |
||
10 | public function testGetters() |
||
11 | { |
||
12 | $point = new Point(4, 25); |
||
13 | $this->assertEquals(4, $point->getX()); |
||
14 | $this->assertEquals(25, $point->getY()); |
||
15 | } |
||
16 | } |