|
Commons Digester example source code file (CatalogTestCase.java)
The Commons Digester CatalogTestCase.java source code
/* $Id: CatalogTestCase.java 992060 2010-09-02 19:09:47Z simonetripodi $
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.commons.digester.annotations.catalog;
import org.apache.commons.digester.Digester;
import org.apache.commons.digester.annotations.AbstractAnnotatedPojoTestCase;
import org.junit.Test;
/**
*
*
* @since 2.1
*/
public final class CatalogTestCase extends AbstractAnnotatedPojoTestCase {
@Test
public void testCatalog() throws Exception {
Catalog catalog = new Catalog();
Book book = new Book("0-596-00184-3");
book.setTitle("Ant, The Definitive Guide");
book.setAuthor("Jesse Tilly & Eric M. Burke");
book.setDesc("Complete build management for Java.");
catalog.addItem(book);
book = new Book("0201310058");
book.setTitle("Effective Java");
book.setAuthor("Joshua Bloch");
book.setDesc("Tips for experienced Java software developers.");
catalog.addItem(book);
AudioVisual dvd = new AudioVisual();
dvd.setName("Drunken Master");
dvd.setCategory("martial arts");
dvd.setDesc("Hilarious slapstick starring Jackie Chan.");
dvd.setRuntime(106);
dvd.setYearMade(1978);
catalog.addItem(dvd);
dvd = new AudioVisual();
dvd.setName("The Piano");
dvd.setCategory("drama");
dvd.setDesc("Character drama set in New Zealand during the Victorian era.");
dvd.setRuntime(121);
dvd.setYearMade(1993);
catalog.addItem(dvd);
this.verifyExpectedEqualsToParsed(catalog);
}
@Override
protected void decorate(Digester digester) {
digester.addSetProperty("catalog/dvd/attr", "id", "value");
}
}
Other Commons Digester examples (source code examples)Here is a short list of links related to this Commons Digester CatalogTestCase.java source code file: |
Other websites by Alvin Alexander:
Life/living in Alaska (OneMansAlaska.com)
How I Sold My Business (HowISoldMyBusiness.com)
Copyright 1998-2011 Alvin Alexander, devdaily.com
All Rights Reserved.