use github repo as central
This commit is contained in:
16
test/core/roaservicerequest_ut.cc
Normal file
16
test/core/roaservicerequest_ut.cc
Normal file
@@ -0,0 +1,16 @@
|
||||
#include "gtest/gtest.h"
|
||||
#include "alibabacloud/core/RoaServiceRequest.h"
|
||||
|
||||
|
||||
using namespace std;
|
||||
using namespace AlibabaCloud;
|
||||
|
||||
TEST(test_RoaServiceRequest, basic) {
|
||||
const string product = "ECS";
|
||||
const string version = "1.0";
|
||||
|
||||
RoaServiceRequest roa(product, version);
|
||||
EXPECT_TRUE(roa.version() == version);
|
||||
EXPECT_TRUE(roa.product() == product);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user