Examples of MediaObject


Examples of net.bican.wordpress.MediaObject

@SuppressWarnings({ "static-method", "javadoc", "nls", "boxing" })
public class MediaTest extends AbstractWordpressTest {

  @Test
  public void testMedia() throws Exception {
    MediaObject r = WP.newMediaObject("image/png", new File("test/test.png"),
        true);
    URL url = new URL(r.getUrl());
    HttpURLConnection urlConn = (HttpURLConnection) url.openConnection();
    urlConn.connect();
    assertEquals(HttpURLConnection.HTTP_OK, urlConn.getResponseCode());
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.