Project

General

Profile

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

    
3

    
4
use PHPUnit\Framework\TestCase;
5

    
6

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

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

    
18
}
(2-2/2)