| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 31 | 2 | public function testGettingHashes() |
|
| 32 | { |
||
| 33 | 1 | $csr = $this->loadTestCSR(); |
|
| 34 | 1 | $this->ComodoDecodeCSR->setCSR($csr); |
|
| 35 | 1 | $Hashes = $this->ComodoDecodeCSR->fetchHashes(); |
|
| 36 | |||
| 37 | 1 | $this->assertSame($this->validMD5, $Hashes["md5"], "md5 didn't match the correct value"); |
|
| 38 | 1 | $this->assertSame($this->validSHA1, $Hashes["sha1"], "sha1 didn't match the correct value"); |
|
| 39 | 2 | } |
|
| 40 | |||
| 51 |
This check looks for variable assignements that are either overwritten by other assignments or where the variable is not used subsequently.
Both the
$myVarassignment in line 1 and the$higherassignment in line 2 are dead. The first because$myVaris never used and the second because$higheris always overwritten for every possible time line.