blob: 0d22820714bbb3f4e1c79d2645197ac4d42e4516 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/vr/elements/oval.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace vr {
TEST(Oval, CornerRadii) {
Oval oval;
oval.SetSize(10.0f, 1.0f);
EXPECT_FLOAT_EQ(0.5f, oval.corner_radius());
}
} // namespace vr