azure-sdk-for-cpp/sdk/template/azure-template/test/ut/template_test.cpp
Victor Vazquez 8aac9091c2
Mention min clang format version and format all cpp and hpp files with clang-format version 9.0 (#1208)
* Add info about clang-format version

* updates for cpp and hpp format

* special cases
2020-12-17 18:34:23 -08:00

16 lines
317 B
C++

// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
#include <gtest/gtest.h>
#include <azure/template/template_client.hpp>
using namespace Azure::Template;
TEST(Template, Basic)
{
TemplateClient templateClient;
EXPECT_FALSE(templateClient.ClientVersion().empty());
}