Package fi.jumi.core

Source Code of fi.jumi.core.Timeouts

// Copyright © 2011-2014, Esko Luontola <www.orfjackal.net>
// This software is released under the Apache License 2.0.
// The license text is at http://www.apache.org/licenses/LICENSE-2.0

package fi.jumi.core;

import org.junit.rules.Timeout;

public class Timeouts {

    public static final int TIMEOUT = 1000;

    public static Timeout forUnitTest() {
        return new Timeout(TIMEOUT);
    }
}
TOP

Related Classes of fi.jumi.core.Timeouts

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.