]> WPIA git - gigi.git/blob - tests/org/cacert/gigi/testUtils/InitTruststore.java
Move 2 test util classes to the "testUtils" package
[gigi.git] / tests / org / cacert / gigi / testUtils / InitTruststore.java
1 package org.cacert.gigi.testUtils;
2
3 public class InitTruststore {
4         private InitTruststore() {
5         }
6         static {
7                 System.setProperty("javax.net.ssl.trustStorePassword", "changeit");
8                 System.setProperty("javax.net.ssl.trustStore", "config/cacerts.jks");
9         }
10         public static void run() {
11
12         }
13 }