Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
10 | public function testSimilarText() |
||
11 | { |
||
12 | $this->assertTrue(100.0===similarText('qwerty', 'ytrewq')); |
||
13 | $this->assertTrue(similarText('qwerty', 'ytreq')>=80); |
||
14 | $this->assertTrue(similarButNotEqual('qwerty', 'ytrewq')); |
||
15 | $this->assertTrue(areAnagrams('qwerty', 'ytrewq')); |
||
16 | $this->assertTrue(0.0===similarText('qwerty', ';lkjhg')); |
||
17 | } |
||
20 |