Back to project page filmster.
The source code is released under:
Apache License
If you think the Android project filmster listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.doodeec.filmster.ServerCommunicator.ServerRequest; // ww w .j a va2 s .c o m import android.test.InstrumentationTestCase; /** * Created by Dusan Doodeec Bartos on 27.10.2014. * * @see com.doodeec.filmster.ServerCommunicator.ServerRequest.ErrorResponse */ public class ErrorResponseSpec extends InstrumentationTestCase { private ErrorResponse error; @Override protected void setUp() throws Exception { super.setUp(); error = new ErrorResponse("Test"); assertNotNull(error); } public void testErrorResponseGetters() throws Exception { assertEquals("Test", error.getMessage()); } }