forked from jpush/jpush-api-java-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBaseTest.java
More file actions
25 lines (15 loc) · 675 Bytes
/
Copy pathBaseTest.java
File metadata and controls
25 lines (15 loc) · 675 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package cn.jpush.api;
import org.junit.Before;
public abstract class BaseTest {
protected static final String APP_KEY ="dd1066407b044738b6479275";
protected static final String MASTER_SECRET = "6b135be0037a5c1e693c3dfa";
public static final String ALERT = "JPush Test - alert";
public static final String MSG_CONTENT = "JPush Test - msgContent";
public static final String REGISTRATION_ID1 = "0900e8d85ef";
public static final String REGISTRATION_ID2 = "0a04ad7d8b4";
protected JPushClient jpushClient = null;
@Before
public void before() {
jpushClient = new JPushClient(MASTER_SECRET, APP_KEY);
}
}