11 lines
160 B
PHP
11 lines
160 B
PHP
<?php
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class DropboxTest extends TestCase
|
|
{
|
|
public function testDemo()
|
|
{
|
|
$this->assertEquals(0, 5 - 5);
|
|
}
|
|
}
|