Java Code Examples for me.chanjar.weixin.common.api.WxConsts#FILE_JPG

The following examples show how to use me.chanjar.weixin.common.api.WxConsts#FILE_JPG . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: WxCpMediaAPITest.java    From weixin-java-tools with Apache License 2.0 5 votes vote down vote up
@DataProvider
public Object[][] uploadMedia() {
  return new Object[][] {
      new Object[] { WxConsts.MEDIA_IMAGE, WxConsts.FILE_JPG, "mm.jpeg" },
      new Object[] { WxConsts.MEDIA_VOICE, WxConsts.FILE_MP3, "mm.mp3" },
      new Object[] { WxConsts.MEDIA_VIDEO, WxConsts.FILE_MP4, "mm.mp4" },
      new Object[] { WxConsts.MEDIA_FILE, WxConsts.FILE_JPG, "mm.jpeg" }
  };
}
 
Example 2
Source File: WxMpMaterialAPITest.java    From weixin-java-tools with Apache License 2.0 5 votes vote down vote up
@DataProvider
public Object[][] uploadMaterial() {
  return new Object[][]{
      new Object[]{WxConsts.MEDIA_IMAGE, WxConsts.FILE_JPG, "mm.jpeg"},
      new Object[]{WxConsts.MEDIA_VOICE, WxConsts.FILE_MP3, "mm.mp3"},
      new Object[]{WxConsts.MEDIA_VIDEO, WxConsts.FILE_MP4, "mm.mp4"},
      new Object[]{WxConsts.MEDIA_THUMB, WxConsts.FILE_JPG, "mm.jpeg"}
  };
}
 
Example 3
Source File: WxMpMediaAPITest.java    From weixin-java-tools with Apache License 2.0 5 votes vote down vote up
@DataProvider
public Object[][] uploadMedia() {
  return new Object[][] {
      new Object[] { WxConsts.MEDIA_IMAGE, WxConsts.FILE_JPG, "mm.jpeg" },
      new Object[] { WxConsts.MEDIA_VOICE, WxConsts.FILE_MP3, "mm.mp3" },
      new Object[] { WxConsts.MEDIA_VIDEO, WxConsts.FILE_MP4, "mm.mp4" },
      new Object[] { WxConsts.MEDIA_THUMB, WxConsts.FILE_JPG, "mm.jpeg" }
  };
}