mirror of
https://github.com/nullthoughts/laravel-data-sync.git
synced 2026-02-01 13:47:24 +00:00
27 lines
399 B
PHP
27 lines
399 B
PHP
<?php
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class NotExistingCoveredElementTest extends TestCase
|
|
{
|
|
/**
|
|
* @covers NotExistingClass
|
|
*/
|
|
public function testOne()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @covers NotExistingClass::notExistingMethod
|
|
*/
|
|
public function testTwo()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @covers NotExistingClass::<public>
|
|
*/
|
|
public function testThree()
|
|
{
|
|
}
|
|
}
|