| 1 | <?php |
||
| 17 | class AbstractCharacterTest extends TestCase |
||
| 18 | { |
||
| 19 | public function test public getters return types() |
||
| 20 | { |
||
| 21 | $character = new CharacterStub(); |
||
| 22 | |||
| 23 | static::assertInternalType('string', $character->getName()); |
||
| 24 | static::assertInternalType('string', $character->getNameSlug()); |
||
| 25 | } |
||
| 26 | } |
||
| 27 |