/** * */ package fr.lifl.stc.stan.test; import com.midwinter.junit.GetterSetterTester; import fr.lifl.stc.stan.execution.stack.MultiObject; import junit.framework.TestCase; /** * @author yann * */ public class TestMultiObject extends TestCase { // private MultiObject multi; /* (non-Javadoc) * @see junit.framework.TestCase#setUp() */ protected void setUp() throws Exception { super.setUp(); // multi = new MultiObject(); } /** * Test method for {@link fr.lifl.stc.stan.execution.stack.MultiObject#MultiObject()}. */ public void testMultiObject() throws Exception { MultiObject m = new MultiObject(); GetterSetterTester gst = new GetterSetterTester(m); gst.test(); } /** * Test method for {@link fr.lifl.stc.stan.execution.stack.MultiObject#add(fr.lifl.stc.stan.execution.stack.JvmType)}. */ public void testAdd() { fail("Not yet implemented"); } /** * Test method for {@link fr.lifl.stc.stan.execution.stack.MultiObject#contains(fr.lifl.stc.stan.execution.stack.JvmType)}. */ public void testContains() { fail("Not yet implemented"); } /** * Test method for {@link fr.lifl.stc.stan.execution.stack.MultiObject#clone()}. */ public void testClone() { fail("Not yet implemented"); } /** * Test method for {@link fr.lifl.stc.stan.execution.stack.MultiObject#size()}. */ public void testSize() { fail("Not yet implemented"); } /** * Test method for {@link fr.lifl.stc.stan.execution.stack.MultiObject#equals(java.lang.Object)}. */ public void testEqualsObject() { fail("Not yet implemented"); } /** * Test method for {@link fr.lifl.stc.stan.execution.stack.MultiObject#merge(fr.lifl.stc.stan.execution.stack.MultiObject)}. */ public void testMerge() { fail("Not yet implemented"); } /** * Test method for {@link fr.lifl.stc.stan.execution.stack.MultiObject#content()}. */ public void testContent() { fail("Not yet implemented"); } /** * Test method for {@link fr.lifl.stc.stan.execution.stack.MultiObject#typeSize()}. */ public void testTypeSize() { fail("Not yet implemented"); } /** * Test method for {@link fr.lifl.stc.stan.execution.stack.MultiObject#toString()}. */ public void testToString() { fail("Not yet implemented"); } /** * Test method for {@link fr.lifl.stc.stan.execution.stack.MultiObject#getReferenceType()}. */ public void testGetReferenceType() { fail("Not yet implemented"); } /** * Test method for {@link fr.lifl.stc.stan.execution.stack.MultiObject#hasExactType()}. */ public void testHasExactType() { fail("Not yet implemented"); } /** * Test method for {@link fr.lifl.stc.stan.execution.stack.MultiObject#getExactType()}. */ public void testGetExactType() { fail("Not yet implemented"); } /** * Test method for {@link fr.lifl.stc.stan.execution.stack.MultiObject#toBytes(int, fr.lifl.stc.stan.execution.Interpreter)}. */ public void testToBytesIntInterpreter() { fail("Not yet implemented"); } /** * Test method for {@link fr.lifl.stc.stan.execution.stack.MultiObject#toBytesSize(int, fr.lifl.stc.stan.execution.Interpreter)}. */ public void testToBytesSize() { fail("Not yet implemented"); } /** * Test method for {@link fr.lifl.stc.stan.execution.stack.MultiObject#toBytes(fr.lifl.stc.stan.execution.stack.MultiObject[], int, int, fr.lifl.stc.stan.execution.Interpreter)}. */ public void testToBytesMultiObjectArrayIntIntInterpreter() { fail("Not yet implemented"); } }