1 package br.org.articulus.server;
2
3 import junit.framework.TestCase;
4
5 public class UserImplTest extends TestCase {
6
7
8 public void testReturnList() {
9 UserImpl u = new UserImpl();
10 assertNotNull(u.returnList());
11 }
12
13 }