Newer
Older
sample-junit1 / src / test / java / com / sample / AppTest.java
package com.sample;

import org.junit.Test;
import static org.junit.Assert.*;
import static org.hamcrest.CoreMatchers.*;


/**
 * Unit test for simple App.
 */
public class AppTest 
{
    /**
     * "Hello" であること。
     */
    @Test
    public void case1()
    {
	assertThat("Hello", is("Hello"));
    }

    /**
     * 1 であること。
     */
    @Test
    public void case3()
    {
	assertThat(1, is(1));
    }
}