]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.enterprise/ext/test/AllEnterpriseTests.java
[maven-release-plugin] prepare release argeo-commons-2.1.79
[lgpl/argeo-commons.git] / org.argeo.enterprise / ext / test / AllEnterpriseTests.java
1 import org.argeo.fs.FsUtilsTest;
2 import org.argeo.osgi.useradmin.LdifParserTest;
3 import org.argeo.osgi.useradmin.UserAdminConfTest;
4 import org.argeo.util.test.Tester;
5
6 class AllEnterpriseTests {
7
8 public static void main(String[] args) throws Exception {
9 Tester tester = new Tester();
10
11 // FS
12 tester.execute(FsUtilsTest.class.getName());
13
14 // User admin
15 tester.execute(LdifParserTest.class.getName());
16 //tester.execute(LdifUserAdminTest.class.getName());
17 tester.execute(UserAdminConfTest.class.getName());
18 }
19
20 }