Package fi.jumi.core.ipc.api

Examples of fi.jumi.core.ipc.api.CommandListener


    public void launcher_tells_daemon_to_runTests_and_daemon_replies() throws Exception {
        SuiteConfiguration expectedSuiteConfiguration = new SuiteConfigurationBuilder()
                .addJvmOptions("-some-options")
                .freeze();

        executor.execute(new CommandsDirectoryObserver(daemonDir, executor, actorThread, new CommandListener() {
            @Override
            public void runTests(SuiteConfiguration suiteConfiguration, ActorRef<SuiteListener> suiteListener) {
                // this happens on daemon side
                assertThat(suiteConfiguration, is(expectedSuiteConfiguration));
                suiteListener.tell().onSuiteStarted();
View Full Code Here

TOP

Related Classes of fi.jumi.core.ipc.api.CommandListener

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.