Code Duplication    Length = 7-7 lines in 2 locations

tests/Xigen/DiffrentTextfileCSRTest.php 2 locations

@@ 52-58 (lines=7) @@
49
        $this->assertFalse($test);
50
    }
51
52
    public function testWithSH1AndComdoText()
53
    {
54
        $response = $this->validSHA1 . "\n";
55
        $response .= "comodoca.com\n";
56
        $test = $this->checkresponse($response);
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
        $response = $this->validSHA1 . "\n";
63
        $response .= "comodoca.com";
64
        $test = $this->checkresponse($response);
65
        $this->assertTrue($test);
66
    }
67
68
    public function testWithSH1AndComdoTextAndNewLine()
69
    {