Package kanakata.runtime

Examples of kanakata.runtime.TimeSource


    public void setUpEmptySystemProperty(final String propertyName) {
        setUpSystemProperty(propertyName, null);
    }

    public void setUpSystemTime(TimeSource source) {
        final TimeSource systemTimeSource = SystemTime.getSource();
        SystemTime.set(source);
        registerCleanupAction(new CleanupAction() {
            public void perform() throws Exception {
                SystemTime.set(systemTimeSource);
            }
View Full Code Here

TOP

Related Classes of kanakata.runtime.TimeSource

Copyright © 2018 www.massapicom. 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.