* @since 2.2
*/
public void testValidLibrary() throws Exception
{
ILibrarySpecification spec = parseLib("ValidLibrary.library");
checkLine(spec, 24);
checkList("pageNames", new String[]
{ "FirstPage", "SecondPage" }, spec.getPageNames());
checkList("componentAliases", new String[]
{ "FirstComponent", "SecondComponent" }, spec.getComponentTypes());
checkList("libraryIds", new String[]
{ "lib1", "lib2" }, spec.getLibraryIds());
assertNotNull(spec.getSpecificationLocation());
}