sts_model_getcalleridentity_request_ut.cc 325 B

123456789101112
  1. #include <iostream>
  2. #include <stdio.h>
  3. #include "gtest/gtest.h"
  4. #include "alibabacloud/core/sts/model/GetCallerIdentityRequest.h"
  5. using namespace std;
  6. using namespace AlibabaCloud;
  7. TEST(GetCallerIdentityRequest, basic) {
  8. Sts::Model::GetCallerIdentityRequest req;
  9. EXPECT_TRUE(req.actionName() == "GetCallerIdentity");
  10. }