01: package org.drools.base.extractors;
02:
03: import junit.framework.TestCase;
04:
05: public abstract class BaseClassFieldExtractorsTest extends TestCase {
06:
07: public abstract void testGetBooleanValue();
08:
09: public abstract void testGetByteValue();
10:
11: public abstract void testGetCharValue();
12:
13: public abstract void testGetShortValue();
14:
15: public abstract void testGetIntValue();
16:
17: public abstract void testGetLongValue();
18:
19: public abstract void testGetFloatValue();
20:
21: public abstract void testGetDoubleValue();
22:
23: public abstract void testGetValue();
24:
25: public abstract void testIsNullValue();
26:
27: }
|