| @@ 57-63 (lines=7) @@ | ||
| 54 | $this->assertFalse($test); |
|
| 55 | } |
|
| 56 | ||
| 57 | public function testWithSH1AndComdoText() |
|
| 58 | { |
|
| 59 | $response = $this->validSHA1 . "\n"; |
|
| 60 | $response .= "comodoca.com\n"; |
|
| 61 | $test = $this->checkresponse($response); |
|
| 62 | $this->assertTrue($test); |
|
| 63 | } |
|
| 64 | ||
| 65 | public function testWithSH1AndComdoTextNoTrailingReturn() |
|
| 66 | { |
|
| @@ 65-71 (lines=7) @@ | ||
| 62 | $this->assertTrue($test); |
|
| 63 | } |
|
| 64 | ||
| 65 | public function testWithSH1AndComdoTextNoTrailingReturn() |
|
| 66 | { |
|
| 67 | $response = $this->validSHA1 . "\n"; |
|
| 68 | $response .= "comodoca.com"; |
|
| 69 | $test = $this->checkresponse($response); |
|
| 70 | $this->assertTrue($test); |
|
| 71 | } |
|
| 72 | ||
| 73 | public function testWithSH1AndComdoTextAndNewLine() |
|
| 74 | { |
|