Package org.richfaces.demo.tree.test

Source Code of org.richfaces.demo.tree.test.LibraryTest

package org.richfaces.demo.tree.test;

import java.util.Iterator;

import org.richfaces.demo.tree.Library;

import junit.framework.TestCase;

public class LibraryTest extends TestCase {
 
  public void testLibrary() {
    Library library = new Library();
    Iterator it = library.getChildren();
    assertTrue(it.hasNext());
  }

}
TOP

Related Classes of org.richfaces.demo.tree.test.LibraryTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.