]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.cms/src/org/argeo/slc/cms/test/CmsSmokeTest.java
Clarify start levels
[gpl/argeo-slc.git] / org.argeo.slc.cms / src / org / argeo / slc / cms / test / CmsSmokeTest.java
1 package org.argeo.slc.cms.test;
2
3 import java.io.IOException;
4 import java.nio.file.Files;
5 import java.nio.file.Path;
6 import java.nio.file.Paths;
7
8 public class CmsSmokeTest {
9
10 public static void main(String[] args) throws IOException {
11 Path instanceData;
12 if (args.length > 0) {
13 instanceData = Paths.get(args[0]);
14 } else {
15 instanceData = Files.createTempDirectory("cms-test");
16 }
17
18 }
19
20 }