test_auth.cpp 356 B

1234567891011121314151617
  1. 
  2. #include "hello_test.h"
  3. TEST_F(HelloTest, authSyncServerCommunicator)
  4. {
  5. transServerCommunicator([&](Communicator *comm){
  6. checkSync(comm, "AuthObjAdapter");
  7. });
  8. }
  9. TEST_F(HelloTest, authASyncGlobalCommunicatorInCoroutine)
  10. {
  11. transInCoroutineServerCommunicator([&](Communicator *comm){
  12. checkASync(comm, "AuthObjAdapter");
  13. });
  14. }