1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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/.
10 #include <cppunit/TestFixture.h>
11 #include <cppunit/extensions/HelperMacros.h>
13 #include <tools/time.hxx>
17 class TimeTest
: public CppUnit::TestFixture
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();
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: */