123456789101112131415161718192021222324252627282930313233343536 |
- #include "test.h"
- const QUrl echoServerAddress("http://localhost:50051", QUrl::StrictMode);
- int main(int argc, char **argv)
- {
- QTEST_SET_MAIN_SOURCE_PATH
- TestSetup setup(std::make_shared<QGrpcHttp2Channel>(echoServerAddress, QGrpcInsecureChannelCredentials() | QGrpcInsecureCallCredentials()));
- return quick_test_main_with_setup(argc, argv, "qtgrpc_qml_test_http2", nullptr, &setup);
- }
|