1 | <?php |
||
12 | class IOUtilTest extends \PHPUnit_Framework_TestCase |
||
13 | { |
||
14 | /** |
||
15 | * Tests IOUtil::answerToBool |
||
16 | */ |
||
17 | public function testAnswerToBool() |
||
18 | { |
||
19 | $this->assertTrue(IOUtil::answerToBool('y')); |
||
20 | $this->assertTrue(IOUtil::answerToBool('yes')); |
||
21 | $this->assertTrue(IOUtil::answerToBool('ok')); |
||
22 | $this->assertFalse(IOUtil::answerToBool('foo')); |
||
23 | } |
||
24 | } |
||
25 |