TimeTrex/vendor/phpunit/phpunit-selenium/Tests/Selenium2TestCase/Coverage/DummyClass.php

14 lines
168 B
PHP
Raw Normal View History

2022-12-13 07:10:06 +01:00
<?php
class DummyClass
{
public function coveredMethod()
{
return NULL;
}
public function uncoveredMethod()
{
return NULL;
}
}