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.

57 lines
722B

  1. #include <gtest/gtest.h>
  2. #include "JackIoAudioAdapter.h"
  3. namespace Jack
  4. {
  5. class TestIoAudioAdapter: public ::testing::Test
  6. {
  7. public:
  8. TestIoAudioAdapter()
  9. {
  10. }
  11. };
  12. TEST_F( TestIoAudioAdapter, Open_Success )
  13. {
  14. }
  15. TEST_F( TestIoAudioAdapter, Close_Success )
  16. {
  17. }
  18. TEST_F( TestIoAudioAdapter, Create_Success )
  19. {
  20. }
  21. TEST_F( TestIoAudioAdapter, Destroy_Success )
  22. {
  23. }
  24. TEST_F( TestIoAudioAdapter, SetSampleRate_Success )
  25. {
  26. }
  27. TEST_F( TestIoAudioAdapter, SetBufferSize_Success )
  28. {
  29. }
  30. TEST_F( TestIoAudioAdapter, Init_Success )
  31. {
  32. }
  33. TEST_F( TestIoAudioAdapter, Execute_Success )
  34. {
  35. }
  36. }