KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tonbeller > wcf > convert > ConverterTestBase


1 package com.tonbeller.wcf.convert;
2
3 import java.util.Locale JavaDoc;
4
5 import com.tonbeller.tbutils.xmlunit.XmlTestCase;
6 import com.tonbeller.wcf.format.Formatter;
7 import com.tonbeller.wcf.format.FormatterFactory;
8
9 /**
10  * Created on 28.11.2002
11  *
12  * @author av
13  */

14 public class ConverterTestBase extends XmlTestCase {
15   ConverterTestBean bean;
16   Converter conv;
17
18   public ConverterTestBase(String JavaDoc name) {
19     super(name);
20   }
21   
22   /**
23    * @see junit.framework.TestCase#setUp()
24    */

25   protected void setUp() throws Exception JavaDoc {
26     bean = new ConverterTestBean();
27     Formatter fmt = FormatterFactory.instance(Locale.GERMANY);
28     conv = ConverterFactory.instance(fmt);
29   }
30
31 }
32
Popular Tags