View Javadoc

1   /*
2    * Copyright 2007 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License"); you may not use this file except in
5    * compliance with the License. You may obtain a copy of the License at
6    *
7    * http://www.opensource.org/licenses/ecl2.php
8    *
9    * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS
10   * IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific
11   * language governing permissions and limitations under the License.
12   */
13  package org.kuali.rice.kim.test;
14  
15  import java.util.List;
16  
17  import javax.xml.namespace.QName;
18  
19  import org.junit.Ignore;
20  import org.junit.Test;
21  import org.kuali.rice.core.resourceloader.GlobalResourceLoader;
22  import org.kuali.rice.kim.bo.group.dto.GroupInfo;
23  import org.kuali.rice.kim.test.KIMTestCase;
24  
25  
26  /**
27   * This is test base that should be used for all KIM unit tests. All non-web unit tests for KIM should extend this base
28   * class.
29   *
30   * @author Kuali Rice Team (rice.collab@kuali.org)
31   */
32  @Ignore
33   public class GroupMemberImplTest extends KIMTestCase {
34  	 /**
35  	private GroupMemberImpl groupMember;
36  	
37  	@Override
38  	public void setUp() {
39  		super.setUp();
40  		groupMember = new GroupMemberImpl;
41  	}
42  	
43  	@Override
44  	public void tearDown() {
45  		super.tearDown();
46  		groupMember = null();
47  	}
48  				
49  	@Test
50  	public void testGroupMemberId(String groupMemberId) {
51  		String groupMemberId = groupMember.setGroupMemberId("g1111");
52  		assertEquals("g1111", groupMemberId.getGroupMemberId());
53  	}
54  	
55  	@Test
56  	public void testGroupId(String groupId) {
57  		String groupIds = groupService.getGroupId("g222");
58  		assertEquals("g222", groupMember.getGroupMemberId());
59  	}
60  	**/
61  }
62