summaryrefslogtreecommitdiff
path: root/src/test/java/com/mycompany/mydepartment/AppTest.java
blob: fb4197fb0a1146851fffe7952b195ec51dd9b694 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.gitlab.xlgmokha;

import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;

public class AppTest extends TestCase
{
  public AppTest( String testName )
  {
    super( testName );
  }

  public static Test suite()
  {
    return new TestSuite( AppTest.class );
  }

  public void testApp()
  {
    assertTrue( true );
  }
}