Version 6.1.4.1, tag libreoffice-6.1.4.1
[LibreOffice.git] / tools / qa / cppunit / test_time.cxx
blobf1915b71baa1dabc0b0a2a6928cefa58f9c24781
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
10 #include <cppunit/TestFixture.h>
11 #include <cppunit/extensions/HelperMacros.h>
13 #include <tools/time.hxx>
15 namespace tools
17 class TimeTest : public CppUnit::TestFixture
19 public:
20 void testTime();
22 CPPUNIT_TEST_SUITE(TimeTest);
23 CPPUNIT_TEST(testTime);
24 CPPUNIT_TEST_SUITE_END();
27 void TimeTest::testTime()
29 Time aOrigTime(1, 56, 10);
30 auto nMS = aOrigTime.GetMSFromTime();
32 Time aNewTime(0);
33 aNewTime.MakeTimeFromMS(nMS);
35 CPPUNIT_ASSERT(bool(aOrigTime == aNewTime));
38 CPPUNIT_TEST_SUITE_REGISTRATION(TimeTest);
41 /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */