OSDN Git Service

original
[gb-231r1-is01/Gingerbread_2.3.3_r1_IS01.git] / libcore / luni / src / test / java / tests / api / java / io / FilenameFilterTest.java
1 package tests.api.java.io;
2
3 import junit.framework.TestCase;
4
5 import java.io.FilenameFilter;
6 import java.io.File;
7 import dalvik.annotation.TestLevel;
8 import dalvik.annotation.TestTargetNew;
9 import dalvik.annotation.TestTargetClass;
10
11 @TestTargetClass(
12         value = FilenameFilter.class,
13         untestedMethods = {
14             @TestTargetNew(
15                     method = "accept",
16                     args = {File.class , String.class},
17                     level = TestLevel.NOT_FEASIBLE,
18                     notes = "There are no classes in the current core " +
19                             "libraries that implement this method."
20             )
21         }
22 )
23 public class FilenameFilterTest extends TestCase {
24
25 }