AUTH's THMMY "Parallel and distributed systems" course assignments.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

35 lines
511 B

  1. /**
  2. * \file
  3. * \brief PDS HW3 tests
  4. *
  5. * To run these test execute:
  6. * ...
  7. *
  8. * \author
  9. * Christos Choutouridis AEM:8997
  10. * <cchoutou@ece.auth.gr>
  11. */
  12. #include <gtest/gtest.h>
  13. /*
  14. * Global fixtures
  15. */
  16. class TCUDAbitonic : public ::testing::Test {
  17. protected:
  18. static void SetUpTestSuite() { }
  19. static void TearDownTestSuite() { }
  20. };
  21. /*
  22. * MPI: SysTest (acceptance)
  23. * Each process executes distBubbletonic for uin8_t [16]
  24. */
  25. TEST_F(TCUDAbitonic, test1) {
  26. EXPECT_EQ(true, true);
  27. }