/magstudentportal/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/magstudentportal/trunk

« back to all changes in this revision

Viewing changes to src/test/java/AllTests.java

  • Committer: Gustav Hartvigsson
  • Date: 2017-09-11 11:48:34 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20170911114834-3gg0z26shaicegw7
* changed DB -> db

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* c-basic-offset: 2; tab-width: 2; indent-tabs-mode: nil
 
2
 * vi: set shiftwidth=2 tabstop=2 expandtab:
 
3
 * :indentSize=2:tabSize=2:noTabs=true:
 
4
 */
 
5
 
 
6
import org.junit.runner.RunWith;
 
7
import org.junit.runners.Suite;
 
8
import org.junit.runners.Suite.SuiteClasses;
 
9
 
 
10
@RunWith(Suite.class)
 
11
@SuiteClasses({ TestHash.class })
 
12
public class AllTests {
 
13
 
 
14
}