Package helloTest

Source Code of helloTest.HelloWorldTest

package helloTest;

import static org.junit.Assert.*;

import org.junit.Test;

import helloWorld.HelloWorld;

public class HelloWorldTest {
  @Test
  public void testHellowWorld(){
    HelloWorld hello = new HelloWorld();
    assertEquals("A test for Hello World String", "Hello World", hello.sayHello());
  }
}
TOP

Related Classes of helloTest.HelloWorldTest

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.