Created
July 29, 2014 21:36
-
-
Save pscollins/01ce293f578744e7be56 to your computer and use it in GitHub Desktop.
test class
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Before | |
public void setUp() throws Exception { | |
File file = new File(TEST_PATH); | |
IHDF5Writer writer = HDF5Writer.getDefaultWriter(file); | |
HDF5CompoundDSBridgeFactory intBuilder = new HDF5CompoundDSBridgeFactory(writer); | |
intBuilder.setChunkSize(5); | |
intBuilder.setStartSize(10); | |
intBuilder.setTypeFromInferred(Integer.class); | |
intBridge = intBuilder.build(TEST_DS); | |
} | |
----- | |
java.lang.IllegalArgumentException: The member 'TYPE' is of type 'java.lang.Class' which cannot be handled by any HDFMemberByteifyer. | |
at ch.systemsx.cisd.hdf5.HDF5CompoundByteifyerFactory.findFactory(HDF5CompoundByteifyerFactory.java:281) | |
at ch.systemsx.cisd.hdf5.HDF5CompoundByteifyerFactory.createMemberByteifyers(HDF5CompoundByteifyerFactory.java:125) | |
at ch.systemsx.cisd.hdf5.HDF5ValueObjectByteifyer.<init>(HDF5ValueObjectByteifyer.java:85) | |
at ch.systemsx.cisd.hdf5.HDF5BaseReader.createCompoundByteifyers(HDF5BaseReader.java:1196) | |
at ch.systemsx.cisd.hdf5.HDF5CompoundWriter.getType(HDF5CompoundWriter.java:52) | |
at ch.systemsx.cisd.hdf5.HDF5CompoundWriter.getType(HDF5CompoundWriter.java:78) | |
at ch.systemsx.cisd.hdf5.HDF5CompoundInformationRetriever.getInferredType(HDF5CompoundInformationRetriever.java:327) | |
at ch.systemsx.cisd.hdf5.HDF5CompoundInformationRetriever.getInferredType(HDF5CompoundInformationRetriever.java:337) | |
at ch.systemsx.cisd.hdf5.HDF5CompoundInformationRetriever.getInferredType(HDF5CompoundInformationRetriever.java:343) | |
at com.hftparser.writers.HDF5CompoundDSBridgeFactory.setTypeFromInferred(HDF5CompoundDSBridgeFactory.java:26) | |
at com.hftparser.writers.HDF5CompoundDSBridgeTest.setUp(HDF5CompoundDSBridgeTest.java:23) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) | |
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:47) | |
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) | |
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:44) | |
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:24) | |
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:271) | |
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:70) | |
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50) | |
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238) | |
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63) | |
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236) | |
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53) | |
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229) | |
at org.junit.runners.ParentRunner.run(ParentRunner.java:309) | |
at org.junit.runner.JUnitCore.run(JUnitCore.java:160) | |
at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:74) | |
at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:211) | |
at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:67) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) | |
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:134) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment