package aho;

import static org.junit.Assert.*;

import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;


public class AhoTest {
    Hoge hoge;
	@BeforeClass
	public static void setUpBeforeClass() throws Exception {
	}

	@AfterClass
	public static void tearDownAfterClass() throws Exception {
	}

	@Before
	public void setUp() throws Exception {
		System.out.println("setup");
	}

	@After
	public void tearDown() throws Exception {
	    System.out.println("after");
	}
	
	@Test
	public void hoge(){
		System.out.println(1);
	}
	
	@Test(expected=HogeException.class)
	public void hoge2(){
		System.out.println(2);
	}
	
	
	@Ignore
	@Test
	public void hoge3(){
		System.out.println(3);
	}
	
	
	@Test
	@Ignore
	public void hoge4(){
		System.out.println(4);
	}
	

}
