Package network

Source Code of network.MessageProcessorTest

package network;

import java.io.File;

import util.Log;

import junit.framework.TestCase;

public class MessageProcessorTest extends TestCase {

  public void testAddMessage() throws Exception {
    MessageProcessor processor = new MessageProcessor();
    Message addMessage = new Message();
    addMessage.setCommand("add");
    addMessage.setFileId("testfile.txt");
    addMessage.setFileContents(new File("testfile.txt"));
    processor.process(addMessage, new Log());
    File repositoryFile= new File("d:\\temp\\repository\\");
    assertTrue(repositoryFile.exists());
  }
 
}
TOP

Related Classes of network.MessageProcessorTest

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.