view src/test/java/jp/ac/u_ryukyu/ie/cr/shoshi/jungle/core/ParentTest.java @ 81:715a9fbf02fc

remove <T> many source
author one
date Sun, 31 Aug 2014 07:46:30 +0900
parents cb9fabaedfd4
children
line wrap: on
line source

/*package jp.ac.u_ryukyu.ie.cr.shoshi.jungle.core;

import org.junit.Ignore;
import org.junit.Test;

import junit.framework.Assert;
import junit.framework.TestCase;

@Ignore
public abstract class ParentTest<T extends Parent<?>> extends TestCase
{
	public abstract T instance();
	
	@Test
	public void testGetChildren()
	{
		T instance = instance();
		Children<?> children = instance.getChildren();
		Assert.assertNotNull(children);
	}
}
*/