mirror of
https://github.com/nullthoughts/laravel-data-sync.git
synced 2026-02-01 13:47:24 +00:00
12 lines
190 B
PHP
12 lines
190 B
PHP
<?php
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class CoverageNoneTest extends TestCase
|
|
{
|
|
public function testSomething()
|
|
{
|
|
$o = new CoveredClass;
|
|
$o->publicMethod();
|
|
}
|
|
}
|