miyachi3000
4/8/2014 - 2:02 AM

enclosed test runner

import static org.junit.Assert.*;

import java.util.ArrayList;

import org.junit.Before;
import org.junit.Test;
import org.junit.experimental.runners.Enclosed;
import org.junit.runner.RunWith;

@RunWith(Enclosed.class)


public class ArrayListTest {


	
	public static class syoki{
		
	private ArrayList<String>su;
	
		@Before
		public void setup() throws Exception{
			su=new ArrayList<String>();
			
			
		}
		
		
		
	}
	
	public static class when_class_hellow_is_created{
		
		
	}
	
	
	public void test() {
		
		
		
	}

}