]> WPIA git - gigi.git/blob - tests/org/cacert/gigi/testUtils/InitTruststore.java
7811470d8d9c984582301bf070063ff342fe2021
[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
7         static {
8                 System.setProperty("javax.net.ssl.trustStorePassword", "changeit");
9                 System.setProperty("javax.net.ssl.trustStore", "config/cacerts.jks");
10         }
11
12         public static void run() {
13
14         }
15 }