/* * Copyright (c) 2003, Mishkin Berteig and Christian Gruber * * $Id: SparseNSpaceTest.java 261 2005-05-15 13:36:26Z cgruber $ */ package net.israfil.foundation.collections.nspace; import org.testng.Assert; import org.testng.SkipException; import org.testng.annotations.Test; /** * @author Mishkin Berteig * @author Christian Gruber * @version $Revision: 261 $ */ @Test public class SparseNSpaceTest { public void testCreateDimension_String_String() { throw new SkipException("Unimplemented Test"); } public void testDeleteDimension_Dimension() { throw new SkipException("Unimplemented Test"); } public void testDimensionAddedPosition() { throw new SkipException("Unimplemented Test"); } public void testDimensionRemovedPosition() { throw new SkipException("Unimplemented Test"); } public void testGetDimension_String() { throw new SkipException("Unimplemented Test"); } public void testGetDimensions() { throw new SkipException("Unimplemented Test"); } public void testGetValue() throws InvalidDimensionalityException { NSpace space = new SparseNSpace(); throw new SkipException("Unimplemented Test"); } public void testIsPoint() throws DimensionExistsException { NSpace space = new SparseNSpace(); Assert.assertTrue(space.isPoint()); // Create two "thin" dimensions. space.createDimension("TestDimension1","TestOrdinal"); space.createDimension("TestDimension2","TestOrdinal"); Assert.assertTrue(space.isPoint()); /* space.createDimension("TestDimension3","TestOrdinal1") .addPosition("TestOrdinal2"); Assert.assertFalse(space.isPoint()); */ } public void testLookup_Coordinate() { throw new SkipException("Unimplemented Test"); } /* * Test for NSpace setValue(Coordinate, NSpace) */ public void testSetValue_Coordinate_NSpace() { throw new SkipException("Unimplemented Test"); } /* * Test for NSpace setValue(Coordinate, Object) */ public void testSetValue_Coordinate_Object() { throw new SkipException("Unimplemented Test"); } public void testSlice() { throw new SkipException("Unimplemented Test"); } }