View Javadoc

1   package com.atlassian.plugins.rest.sample.helloworld;
2   
3   import org.junit.Test;
4   import static org.junit.Assert.*;
5   
6   public class HelloWorldTest
7   {
8       private HelloWorld helloWorld = new HelloWorld();
9   
10      @Test
11      public void testSayHelloTo()
12      {
13          assertEquals("Hello world", helloWorld.sayHelloTo("world"));
14      }
15  }