()
| 1158 | } |
| 1159 | |
| 1160 | @Test |
| 1161 | public void testJavaObject() throws Exception { |
| 1162 | MatFileReader mfr = new MatFileReader(); |
| 1163 | Map<String, MLArray> content = mfr.read(getTestFile("java.mat")); |
| 1164 | |
| 1165 | MLJavaObject mlJavaObject = (MLJavaObject) content.get("f"); |
| 1166 | |
| 1167 | assertEquals("java.io.File", mlJavaObject.getClassName()); |
| 1168 | // assertEquals( new File("c:/temp"), mlJavaObject.getObject() ); |
| 1169 | } |
| 1170 | |
| 1171 | @Test |
| 1172 | public void testObject() throws Exception { |
nothing calls this directly
no test coverage detected