Add Operation<T>, OperationStatus, Exception, and Platform headers to (#1659)

the simplified core header.
This commit is contained in:
Ahson Khan 2021-02-10 11:06:26 -08:00 committed by GitHub
parent 572208baac
commit 9edae4f792
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View File

@ -17,8 +17,12 @@
#include "azure/core/datetime.hpp"
#include "azure/core/dll_import_export.hpp"
#include "azure/core/etag.hpp"
#include "azure/core/exception.hpp"
#include "azure/core/match_conditions.hpp"
#include "azure/core/nullable.hpp"
#include "azure/core/operation.hpp"
#include "azure/core/operation_status.hpp"
#include "azure/core/platform.hpp"
#include "azure/core/request_conditions.hpp"
#include "azure/core/response.hpp"
#include "azure/core/uuid.hpp"

View File

@ -30,6 +30,8 @@ TEST(SimplifiedHeader, core)
EXPECT_NO_THROW(Azure::Core::Nullable<int> n);
EXPECT_NO_THROW(Azure::Core::Uuid::CreateUuid());
EXPECT_NO_THROW(Azure::Core::RequestConditions rc);
EXPECT_NO_THROW(Azure::Core::RequestFailedException("foo"));
EXPECT_NO_THROW(Azure::Core::OperationStatus("foo"));
EXPECT_NO_THROW(Azure::Core::Details::Version::VersionString());
{