Store properties file in resources directory.

This commit is contained in:
Sutra Zhou 2018-06-17 17:10:30 +08:00
parent 710b11e170
commit 824668eed0
2 changed files with 75 additions and 58 deletions

View File

@ -0,0 +1,17 @@
package com.foxinmy.weixin4j.api;
import static org.junit.Assert.assertNotNull;
import org.junit.Test;
import com.foxinmy.weixin4j.model.WeixinPayAccount;
public class MchApiTest {
@Test
public void testWeixinBundle() {
MchApi mchApi = new MchApi(new WeixinPayAccount(null, null, null));
assertNotNull(mchApi.weixinBundle());
}
}