File: FloatObjectDeserializerTest.java

package info (click to toggle)
xml-soap 2.2-6
  • links: PTS
  • area: contrib
  • in suites: woody
  • size: 2,492 kB
  • ctags: 1,934
  • sloc: java: 15,895; xml: 740; jsp: 580; cpp: 561; sh: 235; makefile: 127
file content (17 lines) | stat: -rw-r--r-- 492 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package test.encoding.soapenc;

/**
 * Actual tests are in superclass.  This class allows tests
 * of Double deserialization.
 *
 * @author Jim Stearns (Jim_Stearns@hp.com)
 */
public class FloatObjectDeserializerTest extends FPDeserializerTest
{
    public FloatObjectDeserializerTest(String name)
        throws ClassNotFoundException, IllegalAccessException,
            InstantiationException
    {
        super(name, "org.apache.soap.encoding.soapenc.FloatObjectDeserializer");
    }
}