Advertisement
Guest User

Untitled

a guest
Apr 8th, 2020
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.33 KB | None | 0 0
  1. #define NBP_LIBRARY_MAIN
  2. #include <nbp.h>
  3.  
  4. #include "../sample_utils.h"
  5.  
  6. NBP_TEST(test1)
  7. {
  8.     SAMPLE_SLEEP();
  9.  
  10.     NBP_CHECK(1);
  11. }
  12.  
  13. NBP_TEST(test2)
  14. {
  15.     SAMPLE_SLEEP();
  16.  
  17.     NBP_CHECK(1);
  18. }
  19.  
  20. NBP_MAIN_MODULE(mt_scheduler_run_before_after_test_in_parallel)
  21. {
  22.     NBP_CALL_MODULE(test1);
  23.     NBP_CALL_MODULE(test2);
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement