This source file includes following definitions.
- Feature
- testExampleErrorDefined
package org.chromium.net;
import android.test.InstrumentationTestCase;
import android.test.suitebuilder.annotation.SmallTest;
import org.chromium.base.test.util.Feature;
public class NetErrorsTest extends InstrumentationTestCase {
private static final int IO_PENDING_ERROR = -1;
private static final int FAILED_ERROR = -2;
@SmallTest
@Feature({"Android-AppBase"})
public void testExampleErrorDefined() throws Exception {
assertEquals(IO_PENDING_ERROR, NetError.ERR_IO_PENDING);
assertEquals(FAILED_ERROR, NetError.ERR_FAILED);
}
}