view src/test/java/jp/ac/u_ryukyu/cr/ie/tatsuki/functionTest/RolePriorityTest.java @ 43:1bdd50e26fac

Merge with 037731e99d6e876ecc1ef2d921d2ce5f71974376
author one
date Tue, 25 Nov 2014 12:12:17 +0900
parents c036d36c33af
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");
	}
}