summaryrefslogtreecommitdiff
path: root/tools/qa/cppunit
diff options
context:
space:
mode:
authorMike Kaganski <mike.kaganski@collabora.com>2024-04-16 23:10:45 +0500
committerMike Kaganski <mike.kaganski@collabora.com>2024-04-17 03:56:59 +0200
commitea9904c89608d561f6bde3379408208bbb24fe35 (patch)
tree4648cbc73b7a48ea3361f51280a9713be38f0afd /tools/qa/cppunit
parent0957ee9f5d379c80fca4027c187b471118d0490d (diff)
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 <mike.kaganski@collabora.com>
Diffstat (limited to 'tools/qa/cppunit')
-rw-r--r--tools/qa/cppunit/test_fround.cxx62
1 files changed, 0 insertions, 62 deletions
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 <sal/types.h>
-#include <cppunit/TestFixture.h>
-#include <cppunit/extensions/HelperMacros.h>
-
-#include <tools/helpers.hxx>
-
-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: */