You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2012/12/06 11:10:37 UTC

[51/51] [partial] ISIS-188: moving modules into core

http://git-wip-us.apache.org/repos/asf/isis/blob/dbb64345/framework/core/testsupport/src/test/java/org/apache/isis/core/testsupport/files/FilesTest_deleteFiles.java
----------------------------------------------------------------------
diff --git a/framework/core/testsupport/src/test/java/org/apache/isis/core/testsupport/files/FilesTest_deleteFiles.java b/framework/core/testsupport/src/test/java/org/apache/isis/core/testsupport/files/FilesTest_deleteFiles.java
deleted file mode 100644
index 0601a66..0000000
--- a/framework/core/testsupport/src/test/java/org/apache/isis/core/testsupport/files/FilesTest_deleteFiles.java
+++ /dev/null
@@ -1,84 +0,0 @@
-/*
- *  Licensed to the Apache Software Foundation (ASF) under one
- *  or more contributor license agreements.  See the NOTICE file
- *  distributed with this work for additional information
- *  regarding copyright ownership.  The ASF licenses this file
- *  to you under the Apache License, Version 2.0 (the
- *  "License"); you may not use this file except in compliance
- *  with the License.  You may obtain a copy of the License at
- *
- *        http://www.apache.org/licenses/LICENSE-2.0
- *
- *  Unless required by applicable law or agreed to in writing,
- *  software distributed under the License is distributed on an
- *  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- *  KIND, either express or implied.  See the License for the
- *  specific language governing permissions and limitations
- *  under the License.
- */
-package org.apache.isis.core.testsupport.files;
-
-import java.io.File;
-import java.io.IOException;
-
-import org.hamcrest.Description;
-import org.hamcrest.Factory;
-import org.hamcrest.Matcher;
-import org.hamcrest.TypeSafeMatcher;
-import org.jmock.Expectations;
-import org.jmock.auto.Mock;
-import org.junit.Rule;
-import org.junit.Test;
-
-import org.apache.isis.core.testsupport.files.Files.Deleter;
-import org.apache.isis.core.testsupport.files.Files.Recursion;
-import org.apache.isis.core.testsupport.jmock.JUnitRuleMockery2;
-import org.apache.isis.core.testsupport.jmock.JUnitRuleMockery2.Mode;
-
-public class FilesTest_deleteFiles {
-
-    @Rule
-    public JUnitRuleMockery2 context = JUnitRuleMockery2.createFor(Mode.INTERFACES_AND_CLASSES);
-
-    @Mock
-    private Deleter deleter;
-    
-    @Test
-    public void test() throws IOException {
-        final File cusIdxFile = new File("xml/objects/CUS.xml");
-        final File cus1File = new File("xml/objects/CUS/1.xml");
-        final File cus2File = new File("xml/objects/CUS/2.xml");
-        context.checking(new Expectations() {
-            {
-                one(deleter).deleteFile(with(equalsFile(cusIdxFile)));
-                one(deleter).deleteFile(with(equalsFile(cus1File)));
-                one(deleter).deleteFile(with(equalsFile(cus2File)));
-            }
-        });
-        
-        Files.deleteFiles(new File("xml/objects"), Files.filterFileNameExtension(".xml"), Recursion.DO_RECURSE, deleter);
-    }
-    
-
-    private static Matcher<File> equalsFile(final File file) throws IOException {
-        final String canonicalPath = file.getCanonicalPath();
-        return new TypeSafeMatcher<File>() {
-
-            @Override
-            public void describeTo(Description arg0) {
-                arg0.appendText("file '" + canonicalPath + "'");
-            }
-
-            @Override
-            public boolean matchesSafely(File arg0) {
-                try {
-                    return arg0.getCanonicalPath().equals(canonicalPath);
-                } catch (IOException e) {
-                    return false;
-                }
-            }
-        };
-    }
-
-    
-}