Package network

Source Code of network.TransmitterTest

package network;

import junit.framework.TestCase;
import java.io.*;

import util.Log;


public class TransmitterTest extends TestCase {

  public void testTransmission() throws Exception {
    Transmitter transmitter = new Transmitter(2009);
    File file = new File("testfile.txt");
    Message testMessage = new Message();
    testMessage.setFileContents(file);
    testMessage.setCommand("add");
    testMessage.setFileId("testfile.txt");
   
    transmitter.send(testMessage, "UNIVERSI-F15A26",new Log());
  }
}
TOP

Related Classes of network.TransmitterTest

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.