chromium/third_party/openscreen/src/util/simple_fraction_unittest.cc

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "util/simple_fraction.h"

#include <cmath>
#include <limits>

#include "gtest/gtest.h"

namespace openscreen {

namespace {

constexpr int kMin =;
constexpr int kMax =;

void ExpectFromStringEquals(const char* s, const SimpleFraction& expected) {}

void ExpectFromStringError(const char* s) {}
}  // namespace

TEST(SimpleFractionTest, FromStringParsesCorrectFractions) {}

TEST(SimpleFractionTest, FromStringErrorsOnInvalid) {}

TEST(SimpleFractionTest, Equality) {}

TEST(SimpleFractionTest, Definition) {}

TEST(SimpleFractionTest, Positivity) {}

TEST(SimpleFractionTest, CastToDouble) {}

}  // namespace openscreen