@@ 52-58 (lines=7) @@ | ||
49 | $this->assertFalse($test); |
|
50 | } |
|
51 | ||
52 | public function testWithSH1AndComdoText() |
|
53 | { |
|
54 | $responce = $this->validSHA1 . "\n"; |
|
55 | $responce .= "comodoca.com\n"; |
|
56 | $test = $this->checkResponce($responce); |
|
57 | $this->assertTrue($test); |
|
58 | } |
|
59 | ||
60 | public function testWithSH1AndComdoTextNoTrailingReturn() |
|
61 | { |
|
@@ 60-66 (lines=7) @@ | ||
57 | $this->assertTrue($test); |
|
58 | } |
|
59 | ||
60 | public function testWithSH1AndComdoTextNoTrailingReturn() |
|
61 | { |
|
62 | $responce = $this->validSHA1 . "\n"; |
|
63 | $responce .= "comodoca.com"; |
|
64 | $test = $this->checkResponce($responce); |
|
65 | $this->assertTrue($test); |
|
66 | } |
|
67 | } |
|
68 |