We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d1d707 commit 68b97f7Copy full SHA for 68b97f7
.classpath
@@ -13,6 +13,5 @@
13
<classpathentry kind="lib" path="lib/fluent-hc-4.3.6.jar"/>
14
<classpathentry kind="lib" path="lib/httpclient-4.3.6.jar"/>
15
<classpathentry kind="lib" path="lib/httpcore-4.3.3.jar"/>
16
- <classpathentry combineaccessrules="false" kind="src" path="/sword-lang"/>
17
<classpathentry kind="output" path="bin"/>
18
</classpath>
test/org/sword/wechat4j/common/ConfigTest.java
@@ -0,0 +1,15 @@
1
+package org.sword.wechat4j.common;
2
+
3
+import static org.junit.Assert.*;
4
5
+import org.junit.Test;
6
7
+public class ConfigTest {
8
9
+ @Test
10
+ public void testInstance() {
11
+ Config c = Config.instance();
12
+ String appid = c.getAppid();
+ }
+}
0 commit comments