view src/test/java/jp/ac/u_ryukyu/cr/ie/tatsuki/functionTest/rolePriorityTest.java @ 15:5ef4b1004ade

rolePriorityTest
author one
date Mon, 27 Oct 2014 01:32:58 +0900
parents
children 7f70341a78bc
line wrap: on
line source

package jp.ac.u_ryukyu.cr.ie.tatsuki.functionTest;

import org.junit.Test;

import jp.ac.u_ryukyu.cr.ie.tatsuki.bbs.JuGrix;
import junit.framework.Assert;

public class rolePriorityTest {

	@Test
	public void rolePriorityTest(){
		JuGrix jugrix = new JuGrix();
		String priority = jugrix.rolePriority("p:1", "r:34");
		Assert.assertEquals(priority,"1");
	}
}