Code Duplication    Length = 8-8 lines in 2 locations

tests/PulseColumnSettersTestCase.php 2 locations

@@ 102-109 (lines=8) @@
99
        $this->pulse->getStatusColumn('status')->updateValue($color);
100
    }
101
102
    public function testSettingTextColumn()
103
    {
104
        $value = 'Elastic Water Bottle';
105
        $column = $this->pulse->getTextColumn('text');
106
        $column->updateValue($value);
107
108
        $this->assertEquals($value, $column->getValue());
109
    }
110
111
    /**
112
     * @dataProvider invalidTextProvider
@@ 121-128 (lines=8) @@
118
        $this->pulse->getTextColumn('text')->updateValue($value);
119
    }
120
121
    public function testSettingNumericColumn()
122
    {
123
        $value = 25;
124
        $column = $this->pulse->getNumericColumn('numbers');
125
        $column->updateValue($value);
126
127
        $this->assertEquals($value, $column->getValue());
128
    }
129
130
    /**
131
     * @dataProvider invalidNumericProvider