| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 32 | public static function testThatMovementsMustBeOfTheSameDimensionality(Vector $badPlace) |
||
| 33 | { |
||
| 34 | $table = Table::create(5); |
||
| 35 | self::assertInstanceOf(Table::class, $table); |
||
| 36 | |||
| 37 | // If we just pass one Vector to move() $from |
||
| 38 | // is assumed to be origin |
||
| 39 | $table->move($badPlace); |
||
| 40 | } |
||
| 41 | |||
| 51 |