我正在创建一个带有一些单元测试的类,但我无法通过一些测试。示例如下所示。
单元测试
class OffsetTest extends \PHPUnit\Framework\TestCase
{
/**
* @dataProvider getIllegalOffsets
* @expectedException \InvalidArgumentException
* @param $offset
*/
public function testIllegalParameters($offset)
{
new \OffsetEncodingAlgorithm($offset);
$this->fail('Exception should be thrown');
}
/**
* Data provider for {@link OffsetTest::testIllegalParameters()}
* @return array
*/
public function getIllegalOffsets()
{
return [
[-1],
];
}
}
我的课
<?php
class Offset
{
public function __construct(int $offset = 13)
{
try {
if ($offset < 0) {
throw new Exception('Exception should be thrown');
}
} catch (Exception $e) {
return $e->getMessage();
}
$this->offset = $offset;
}
}
测试进度是这样的
繁花如伊