Project

General

Profile

Download (239 Bytes) Statistics
| Branch: | Tag: | Revision:
1
<?php
2

    
3
declare(strict_types=1);
4

    
5
use PHPUnit\Framework\TestCase;
6

    
7

    
8
/**
9
 * test to test if phpUnit is ok
10
 * @author a.kohlbecker
11
 *
12
 */
13
class TestTests extends TestCase {
14

    
15
  function test_fancymodule() {
16
    $this->assertTrue(true);
17
  }
18

    
19
}
(2-2/2)