Package byebye

Source Code of byebye.ByeByeTest

package byebye;

import byebye.ByeBye;
import junit.framework.TestCase;

public class ByeByeTest extends TestCase
{
    public void testByeBye()
    {
        final ByeBye byeBye = new ByeBye();
        assertEquals( "Bye bye world!", byeBye.byebye( null ) );
        assertEquals( "Bye bye EMMA!", byeBye.byebye( "EMMA" ) );
    }
}
TOP

Related Classes of byebye.ByeByeTest

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.