| 46 | } |
| 47 | |
| 48 | TEST(BasicFilters, TransformGeometryImageFilter) |
| 49 | { |
| 50 | itk::simple::ImageFileReader reader; |
| 51 | itk::simple::TransformGeometryImageFilter filter; |
| 52 | itk::simple::Image inputA(0, 0, itk::simple::sitkUInt8); |
| 53 | itk::simple::Image inputB(0, 0, itk::simple::sitkUInt8); |
| 54 | itk::simple::Image output(0, 0, itk::simple::sitkUInt8); |
| 55 | std::string inputSHA1hash; |
| 56 | |
| 57 | |
| 58 | EXPECT_NE(filter.ToString(), "") << "empty ToString method!"; |
| 59 | EXPECT_EQ(filter.GetName(), "TransformGeometryImageFilter") << "checking GetName method!"; |
| 60 | |
| 61 | // Test sets / gets |
| 62 | |
| 63 | |
| 64 | // This block is to verify that the input images for named inputs are |
| 65 | // check if the sizes match for computation. |
| 66 | itk::simple::Image smallImage(1, 1, 1, itk::simple::sitkUInt8); |
| 67 | itk::simple::Image largeImage(10, 10, 10, itk::simple::sitkUInt8); |
| 68 | } |
| 69 | |
| 70 | TEST(BasicFilters, TransformGeometryImageFilter_defaults) |
| 71 | { // BEGIN FOR EACH TEST |
nothing calls this directly
no test coverage detected