コード例 #1
0
 public void test_DartProjectImpl_getNonDartResources() {
   IProject project = new MockProject();
   DartProjectImpl dartProject = new DartProjectImpl(new DartModelImpl(), project);
   try {
     dartProject.getNonDartResources();
     fail("Expected DartModelException");
   } catch (DartModelException exception) {
     // Expected
   }
 }