view src/test/java/jp/ac/u_ryukyu/cr/ie/tatsuki/functionTest/RolePriorityTest.java @ 42:c036d36c33af

function refactor
author one
date Tue, 25 Nov 2014 11:57:17 +0900
parents b8d86bc46b51
children 5e8eac03fed3
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 testRolePriority(){
		JuGrix jugrix = new JuGrix();
		String priority = jugrix.rolePriority("p:1", "r:34");
		Assert.assertEquals(priority,"1");
	}
}