blob: f72a2825bc0888acd3d74f1799110a7525a7c8c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
package org.openecomp.aai.util;
import org.junit.Test;
public class JettyObfuscationConversionCommandLineUtilTest {
private JettyObfuscationConversionCommandLineUtil createTestSubject() {
return new JettyObfuscationConversionCommandLineUtil();
}
@Test
public void testMain() throws Exception {
String[] args = new String[] { "" };
// default test
JettyObfuscationConversionCommandLineUtil.main(args);
}
}
|