| 23 | /* This class is needed because on some systems uint64_t gets converted to long |
| 24 | * while on others it becomes a BigInteger. */ |
| 25 | class BigIntegerFix |
| 26 | { |
| 27 | public static long Convert( long value ) |
| 28 | { |
| 29 | return value; |
| 30 | } |
| 31 | |
| 32 | public static long Convert( BigInteger value ) |
| 33 | { |
| 34 | return value.longValue(); |
| 35 | } |
| 36 | } |
| 37 | |
| 38 | class sitkImageTests |
| 39 | { |
nothing calls this directly
no outgoing calls
no test coverage detected