jack2 codebase
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.

45 lines
598B

  1. #include <gtest/gtest.h>
  2. #include "JackIoAudioAdapter.h"
  3. namespace Jack
  4. {
  5. class TestIoAudioInterface: public ::testing::Test
  6. {
  7. public:
  8. TestIoAudioInterface()
  9. {
  10. }
  11. };
  12. TEST_F( TestIoAudioInterface, Open_Success )
  13. {
  14. }
  15. TEST_F( TestIoAudioInterface, Close_Success )
  16. {
  17. }
  18. TEST_F( TestIoAudioInterface, Read_Success )
  19. {
  20. }
  21. TEST_F( TestIoAudioInterface, Write_Success )
  22. {
  23. }
  24. TEST_F( TestIoAudioInterface, ShortInfo_Success )
  25. {
  26. }
  27. TEST_F( TestIoAudioInterface, LongInfo_Success )
  28. {
  29. }
  30. }