| 113 | // |
| 114 | |
| 115 | TEST(Registration, ImageRegistrationMethod_Basic) |
| 116 | { |
| 117 | // This test is to perform some basic coverage of methods. |
| 118 | |
| 119 | namespace sitk = itk::simple; |
| 120 | |
| 121 | sitk::ImageRegistrationMethod registration; |
| 122 | std::cout << registration.ToString(); |
| 123 | } |
| 124 | |
| 125 | |
| 126 | // |