ObjectInputValidationTest.java revision f6c387128427e121477c1b32ad35cdcaa5101ba3
1package tests.api.java.io;
2
3import junit.framework.TestCase;
4
5import java.io.ObjectInputValidation;
6import dalvik.annotation.TestLevel;
7import dalvik.annotation.TestTargetNew;
8import dalvik.annotation.TestTargetClass;
9
10@TestTargetClass(
11        value = ObjectInputValidation.class,
12        untestedMethods = {
13            @TestTargetNew(
14                    method = "validateObject",
15                    level = TestLevel.NOT_FEASIBLE,
16                    notes = "There are no classes in the current core " +
17                            "libraries that implement this method."
18            )
19        }
20)
21public class ObjectInputValidationTest extends TestCase {
22
23}
24