Package de.fhkn.in.uce.master.server

Source Code of de.fhkn.in.uce.master.server.MasterServerTest

package de.fhkn.in.uce.master.server;

import org.junit.Test;

import de.fhkn.in.uce.master.server.MasterServer;

public class MasterServerTest {

    /**
     * Test method for
     * {@link MasterServer#run(String[])} with no arguments in file, system and command line.
     */
    @Test
    public final void testRun() {
        String[] args = {""};
        MasterServer server = new MasterServer();
        server.run(args);
    }

}
TOP

Related Classes of de.fhkn.in.uce.master.server.MasterServerTest

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.