test_resta.c 180 B

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