20 lines
348 B
PHP
20 lines
348 B
PHP
<?php
|
|
/******************************************
|
|
* Author : Riccardo Di Dato
|
|
* Created On : Fri May 10 2019
|
|
* File : TestFake.php
|
|
*******************************************/
|
|
|
|
namespace ASD {
|
|
use \PHPUnit\Framework\TestCase;
|
|
|
|
class TestFake extends TestCase {
|
|
|
|
public function testAdd() {
|
|
$this->assertEquals(true,true);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
?>
|