Files
nearby/presence/presence_device_test.cc
T
hais c1e898bcf1 Initial impl for PresenceClient
PiperOrigin-RevId: 437370707
2022-03-25 17:37:25 -07:00

61 lines
1.9 KiB
C++

// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "third_party/nearby/presence/presence_device.h"
#include "gmock/gmock.h"
#include "protobuf-matchers/protocol-buffer-matchers.h"
#include "gtest/gtest.h"
namespace nearby {
namespace presence {
namespace {
constexpr PresenceDevice::MotionType kDefaultMotionType =
PresenceDevice::MotionType::kPointAndHold;
constexpr float kDefaultConfidence = 0;
constexpr float kTestConfidence = 0.1;
TEST(PresenceDeviceTest, DefaultConstructorWorks) {
PresenceDevice device;
EXPECT_EQ(device.GetMotionType(), kDefaultMotionType);
EXPECT_EQ(device.GetConfidence(), kDefaultConfidence);
}
TEST(PresenceDeviceTest, DefaultEquals) {
PresenceDevice device1;
PresenceDevice device2;
EXPECT_EQ(device1, device2);
}
TEST(PresenceDeviceTest, ExplicitInitEquals) {
PresenceDevice device1 = {kDefaultMotionType, kTestConfidence};
PresenceDevice device2 = {kDefaultMotionType, kTestConfidence};
EXPECT_EQ(device1, device2);
}
TEST(PresenceDeviceTest, ExplicitInitNotEquals) {
PresenceDevice device1 = {kDefaultMotionType};
PresenceDevice device2 = {kDefaultMotionType, kTestConfidence};
EXPECT_NE(device1, device2);
}
TEST(PresenceDeviceTest, CopyInitEquals) {
PresenceDevice device1 = {kDefaultMotionType, kTestConfidence};
PresenceDevice device2 = {device1};
EXPECT_EQ(device1, device2);
}
} // namespace
} // namespace presence
} // namespace nearby