Guest User

Untitled

a guest
Jun 25th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. TEST( foo ) {
  2. Foo one;
  3. Foo two;
  4.  
  5. // init one & two
  6. // lots of CHECK_CLOSE(one.bar, two.bar, 1e-5); in repeating cycles
  7. }
  8.  
  9. TEST( bar ) {
  10. Foo one;
  11. Foo two;
  12.  
  13. // init one & two
  14. // lots of CHECK_CLOSE(one.bar, two.bar, 1e-5); in repeating cycles
  15. }
  16.  
  17. void blah( const Foo& one, const Foo& two ) {
  18. // lots of CHECK_CLOSE(one.bar, two.bar, 1e-5);
  19. }
  20.  
  21. TEST( foo ) {
  22. Foo one;
  23. Foo two;
  24.  
  25. // init one & two
  26. blah(one, two);
  27. }
  28.  
  29. TEST( bar ) {
  30. Foo one;
  31. Foo two;
  32.  
  33. // init one & two
  34. blah(one, two);
  35. }
Add Comment
Please, Sign In to add comment