From ea9904c89608d561f6bde3379408208bbb24fe35 Mon Sep 17 00:00:00 2001 From: Mike Kaganski Date: Tue, 16 Apr 2024 23:10:45 +0500 Subject: Drop FRound, and use generalized basegfx::fround Change-Id: I7447e649dc3ef4e51242f69c7486a3e84e103d2e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166159 Tested-by: Jenkins Reviewed-by: Mike Kaganski --- tools/qa/cppunit/test_fround.cxx | 62 ---------------------------------------- 1 file changed, 62 deletions(-) delete mode 100644 tools/qa/cppunit/test_fround.cxx (limited to 'tools/qa/cppunit') diff --git a/tools/qa/cppunit/test_fround.cxx b/tools/qa/cppunit/test_fround.cxx deleted file mode 100644 index 4014ff3cb46b..000000000000 --- a/tools/qa/cppunit/test_fround.cxx +++ /dev/null @@ -1,62 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* - * This file is part of the LibreOffice project. - * - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - * - * This file incorporates work covered by the following license notice: - * - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed - * with this work for additional information regarding copyright - * ownership. The ASF licenses this file to you 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 http://www.apache.org/licenses/LICENSE-2.0 . - */ - -#include -#include -#include - -#include - -namespace tools -{ -class FRoundTest : public CppUnit::TestFixture -{ -public: - void testPositiveFRound() - { - sal_Int64 nExpected = 2; - sal_Int64 nActual = FRound(1.6); - CPPUNIT_ASSERT_EQUAL(nExpected, nActual); - - nExpected = 1; - nActual = FRound(1.4); - CPPUNIT_ASSERT_EQUAL(nExpected, nActual); - } - - void testNegativeFRound() - { - sal_Int64 nExpected = -2; - sal_Int64 nActual = FRound(-1.6); - CPPUNIT_ASSERT_EQUAL(nExpected, nActual); - - nExpected = -1; - nActual = FRound(-1.4); - CPPUNIT_ASSERT_EQUAL(nExpected, nActual); - } - - CPPUNIT_TEST_SUITE(FRoundTest); - CPPUNIT_TEST(testPositiveFRound); - CPPUNIT_TEST(testNegativeFRound); - CPPUNIT_TEST_SUITE_END(); -}; - -CPPUNIT_TEST_SUITE_REGISTRATION(FRoundTest); -} // namespace tools - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -- cgit