test_rh.c 188 B

1234567891011121314151617181920
  1. /**
  2. * This is a test for rh in $package$
  3. */
  4. #include "si_test.h"
  5. #include "rh.h"
  6. TEST_FUNC(rh) {
  7. TEST_DONE();
  8. }
  9. int main(void) {
  10. TEST_INIT();
  11. TEST_RUN(rh);
  12. TEST_REPORT();
  13. }