Code Duplication    Length = 8-8 lines in 2 locations

Test/Unit/Model/Entities/TransactionStatusTest.php 2 locations

@@ 65-72 (lines=8) @@
62
        ]);
63
    }
64
65
    public function testGetRawStatusArrayNotUtf8()
66
    {
67
        $this->toolkitHelper->method('isUTF8')->willReturn(false);
68
69
        $result = $this->classToTest->getRawStatusArray();
70
        $expected = ['array' => ['key' => 'value'], 'number' => 15, 'status' => 'status'];
71
        $this->assertEquals($expected, $result);
72
    }
73
74
    public function testGetRawStatusArray()
75
    {
@@ 74-81 (lines=8) @@
71
        $this->assertEquals($expected, $result);
72
    }
73
74
    public function testGetRawStatusArray()
75
    {
76
        $this->toolkitHelper->method('isUTF8')->willReturn(true);
77
78
        $result = $this->classToTest->getRawStatusArray();
79
        $expected = ['array' => ['key' => 'value'], 'number' => 15, 'status' => 'status'];
80
        $this->assertEquals($expected, $result);
81
    }
82
}
83