~ubuntu-branches/ubuntu/trusty/commons-io/trusty

« back to all changes in this revision

Viewing changes to src/test/org/apache/commons/io/FileUtilsWaitForTestCase.java

  • Committer: Bazaar Package Importer
  • Author(s): Arnaud Vandyck
  • Date: 2007-04-13 08:20:49 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070413082049-2hd3s5ixtxsgvnvm
Tags: 1.3.1.dfsg.1-1
* New upstream (closes: #418973)
* java-gcj-compat-dev and cdbs transition
* Removed junit at the moment (closes: #397567)
* No javadoc at the moment

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Licensed to the Apache Software Foundation (ASF) under one or more
 
3
 * contributor license agreements.  See the NOTICE file distributed with
 
4
 * this work for additional information regarding copyright ownership.
 
5
 * The ASF licenses this file to You under the Apache License, Version 2.0
 
6
 * (the "License"); you may not use this file except in compliance with
 
7
 * the License.  You may obtain a copy of the License at
 
8
 * 
 
9
 *      http://www.apache.org/licenses/LICENSE-2.0
 
10
 * 
 
11
 * Unless required by applicable law or agreed to in writing, software
 
12
 * distributed under the License is distributed on an "AS IS" BASIS,
 
13
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
14
 * See the License for the specific language governing permissions and
 
15
 * limitations under the License.
 
16
 */
 
17
package org.apache.commons.io;
 
18
 
 
19
import java.io.File;
 
20
import java.io.IOException;
 
21
 
 
22
import junit.framework.Test;
 
23
import junit.framework.TestSuite;
 
24
import junit.textui.TestRunner;
 
25
 
 
26
import org.apache.commons.io.testtools.FileBasedTestCase;
 
27
 
 
28
/**
 
29
 * This is used to test FileUtils.waitFor() method for correctness.
 
30
 *
 
31
 * @version $Id: FileUtilsWaitForTestCase.java 437567 2006-08-28 06:39:07Z bayard $
 
32
 * @see FileUtils
 
33
 */
 
34
public class FileUtilsWaitForTestCase extends FileBasedTestCase {
 
35
    // This class has been broken out from FileUtilsTestCase
 
36
    // to solve issues as per BZ 38927
 
37
 
 
38
    public static void main(String[] args) {
 
39
        TestRunner.run(suite());
 
40
    }
 
41
 
 
42
    public static Test suite() {
 
43
        return new TestSuite(FileUtilsWaitForTestCase.class);
 
44
    }
 
45
 
 
46
    public FileUtilsWaitForTestCase(String name) throws IOException {
 
47
        super(name);
 
48
    }
 
49
 
 
50
    /** @see junit.framework.TestCase#setUp() */
 
51
    protected void setUp() throws Exception {
 
52
        getTestDirectory().mkdirs();
 
53
    }
 
54
 
 
55
    /** @see junit.framework.TestCase#tearDown() */
 
56
    protected void tearDown() throws Exception {
 
57
        FileUtils.deleteDirectory(getTestDirectory());
 
58
    }
 
59
 
 
60
    //-----------------------------------------------------------------------
 
61
    public void testWaitFor() {
 
62
        FileUtils.waitFor(new File(""), -1);
 
63
        FileUtils.waitFor(new File(""), 2);
 
64
    }
 
65
 
 
66
}