view src/test/java/jp/ac/u_ryukyu/ie/cr/shoshi/jungle/core/AttributesContainerTest.java @ 38:cb9fabaedfd4

added tests and changed testing provider to junit47
author Shoshi TAMAKI
date Mon, 28 Jan 2013 18:52:52 +0900
parents
children 809f813d1083
line wrap: on
line source

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

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

import junit.framework.TestCase;

@Ignore
public abstract class AttributesContainerTest extends TestCase
{
	public abstract AttributesContainer instance();
	
	@Test
	public void testGetAttributes()
	{
		AttributesContainer instance = instance();
		Attributes attrs = instance.getAttributes();
		
		Assert.assertNotNull(attrs);
	}
}