milvus/cpp/unittest/log/log_tests.cpp
jinhai 0c4f1cef5d Update Unit test samples
Former-commit-id: 7f6a6f38fa33330bbb3d3aac534ee7297f45d824
2019-04-14 10:25:49 +08:00

19 lines
552 B
C++

////////////////////////////////////////////////////////////////////////////////
// Copyright 上海赜睿信息科技有限公司(Zilliz) - All Rights Reserved
// Unauthorized copying of this file, via any medium is strictly prohibited.
// Proprietary and confidential.
////////////////////////////////////////////////////////////////////////////////
#include <gtest/gtest.h>
TEST(LogTest, INIT_TEST) {
ASSERT_STREQ("A", "A");
}
TEST(LogTest, RUN_TEST) {
ASSERT_STREQ("B", "B");
}
TEST(LogTest, FINISH_TEST) {
ASSERT_STREQ("C", "C");
}