class RectangleTest extends TestCase
{ /**
* Tests wrong rectangle width.
*
* @covers ::rotate
*/
public function testWrongWidth() { $this->
expectException(\InvalidArgumentException::
class);
$rect =
new Rectangle(-40, 20
);
} /**
* Tests wrong rectangle height.
*
* @covers ::rotate
*/
public function testWrongHeight() { $this->
expectException(\InvalidArgumentException::
class);
$rect =
new Rectangle(40, 0
);
}