Merge pull request #152 from sutra/resources

Resources
This commit is contained in:
jinyu 2018-06-24 21:33:57 +08:00 committed by GitHub
commit e2aeed4435
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 2696 additions and 2679 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());
}
}