All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.subethamail.smtp.test.command.CommandTest Maven / Gradle / Ivy

There is a newer version: 3.1.7
Show newest version
package org.subethamail.smtp.test.command;

import org.subethamail.smtp.test.util.ServerTestCase;

/**
 * @author Jon Stevens
 */
public class CommandTest extends ServerTestCase
{
	public CommandTest(String name)
	{
		super(name);
	}

	public void testCommandHandling() throws Exception
	{
		this.expect("220");

		this.send("blah blah blah");
		this.expect("500 Error: command not implemented");
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy