149 lines
5.4 KiB
C++
149 lines
5.4 KiB
C++
/***********************************************************************
|
|
* fcolorpair-test.cpp - FColorPair unit tests *
|
|
* *
|
|
* This file is part of the Final Cut widget toolkit *
|
|
* *
|
|
* Copyright 2019 Markus Gans *
|
|
* *
|
|
* The Final Cut is free software; you can redistribute it and/or *
|
|
* modify it under the terms of the GNU Lesser General Public License *
|
|
* as published by the Free Software Foundation; either version 3 of *
|
|
* the License, or (at your option) any later version. *
|
|
* *
|
|
* The Final Cut is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
* GNU Lesser General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU Lesser General Public *
|
|
* License along with this program. If not, see *
|
|
* <http://www.gnu.org/licenses/>. *
|
|
***********************************************************************/
|
|
|
|
#include <limits>
|
|
|
|
#include <cppunit/BriefTestProgressListener.h>
|
|
#include <cppunit/CompilerOutputter.h>
|
|
#include <cppunit/extensions/HelperMacros.h>
|
|
#include <cppunit/TestFixture.h>
|
|
#include <cppunit/TestResult.h>
|
|
#include <cppunit/TestResultCollector.h>
|
|
#include <cppunit/TestRunner.h>
|
|
|
|
#include <final/final.h>
|
|
|
|
//----------------------------------------------------------------------
|
|
// class FColorPairTest
|
|
//----------------------------------------------------------------------
|
|
|
|
#pragma pack(push)
|
|
#pragma pack(1)
|
|
|
|
class FColorPairTest : public CPPUNIT_NS::TestFixture
|
|
{
|
|
public:
|
|
FColorPairTest()
|
|
{ }
|
|
|
|
protected:
|
|
void classNameTest();
|
|
void noArgumentTest();
|
|
void copyConstructorTest();
|
|
void assignmentTest();
|
|
void swapTest();
|
|
|
|
private:
|
|
// Adds code needed to register the test suite
|
|
CPPUNIT_TEST_SUITE (FColorPairTest);
|
|
|
|
// Add a methods to the test suite
|
|
CPPUNIT_TEST (classNameTest);
|
|
CPPUNIT_TEST (noArgumentTest);
|
|
CPPUNIT_TEST (copyConstructorTest);
|
|
CPPUNIT_TEST (assignmentTest);
|
|
CPPUNIT_TEST (swapTest);
|
|
|
|
// End of test suite definition
|
|
CPPUNIT_TEST_SUITE_END();
|
|
};
|
|
#pragma pack(pop)
|
|
|
|
//----------------------------------------------------------------------
|
|
void FColorPairTest::classNameTest()
|
|
{
|
|
const finalcut::FColorPair p;
|
|
const char* const classname = p.getClassName();
|
|
CPPUNIT_ASSERT ( std::strcmp(classname, "FColorPair") == 0 );
|
|
}
|
|
|
|
//----------------------------------------------------------------------
|
|
void FColorPairTest::noArgumentTest()
|
|
{
|
|
const finalcut::FColorPair pair{};
|
|
CPPUNIT_ASSERT ( pair.fg_color == finalcut::fc::Default );
|
|
CPPUNIT_ASSERT ( pair.bg_color == finalcut::fc::Default );
|
|
}
|
|
|
|
//----------------------------------------------------------------------
|
|
void FColorPairTest::copyConstructorTest()
|
|
{
|
|
const finalcut::FColorPair p1a;
|
|
finalcut::FColorPair p1b (p1a);
|
|
CPPUNIT_ASSERT ( p1b.fg_color == finalcut::fc::Default );
|
|
CPPUNIT_ASSERT ( p1b.bg_color == finalcut::fc::Default );
|
|
|
|
const finalcut::FColorPair p2a (finalcut::fc::Yellow );
|
|
const finalcut::FColorPair p2b (p2a);
|
|
CPPUNIT_ASSERT ( p2b.fg_color == finalcut::fc::Yellow );
|
|
CPPUNIT_ASSERT ( p2b.bg_color == finalcut::fc::Default );
|
|
|
|
const finalcut::FColorPair p3a (finalcut::fc::Red, finalcut::fc::Black);
|
|
const finalcut::FColorPair p3b (p3a);
|
|
CPPUNIT_ASSERT ( p3b.fg_color == finalcut::fc::Red );
|
|
CPPUNIT_ASSERT ( p3b.bg_color == finalcut::fc::Black );
|
|
}
|
|
|
|
//----------------------------------------------------------------------
|
|
void FColorPairTest::assignmentTest()
|
|
{
|
|
const finalcut::FColorPair p1a;
|
|
const finalcut::FColorPair p1b = p1a;
|
|
CPPUNIT_ASSERT ( p1b.fg_color == finalcut::fc::Default );
|
|
CPPUNIT_ASSERT ( p1b.bg_color == finalcut::fc::Default );
|
|
|
|
const finalcut::FColorPair p2a (finalcut::fc::Yellow );
|
|
const finalcut::FColorPair p2b = p2a;
|
|
CPPUNIT_ASSERT ( p2b.fg_color == finalcut::fc::Yellow );
|
|
CPPUNIT_ASSERT ( p2b.bg_color == finalcut::fc::Default );
|
|
|
|
const finalcut::FColorPair p3a (finalcut::fc::Red, finalcut::fc::Black);
|
|
const finalcut::FColorPair p3b = p3a;
|
|
CPPUNIT_ASSERT ( p3b.fg_color == finalcut::fc::Red );
|
|
CPPUNIT_ASSERT ( p3b.bg_color == finalcut::fc::Black );
|
|
}
|
|
|
|
//----------------------------------------------------------------------
|
|
void FColorPairTest::swapTest()
|
|
{
|
|
finalcut::FColorPair p1;
|
|
p1.swap();
|
|
CPPUNIT_ASSERT ( p1.fg_color == finalcut::fc::Default );
|
|
CPPUNIT_ASSERT ( p1.bg_color == finalcut::fc::Default );
|
|
|
|
finalcut::FColorPair p2 (finalcut::fc::LightBlue );
|
|
p2.swap();
|
|
CPPUNIT_ASSERT ( p2.fg_color == finalcut::fc::Default );
|
|
CPPUNIT_ASSERT ( p2.bg_color == finalcut::fc::LightBlue );
|
|
|
|
finalcut::FColorPair p3 (finalcut::fc::Cyan, finalcut::fc::White);
|
|
p3.swap();
|
|
CPPUNIT_ASSERT ( p3.fg_color == finalcut::fc::White );
|
|
CPPUNIT_ASSERT ( p3.bg_color == finalcut::fc::Cyan );
|
|
}
|
|
|
|
// Put the test suite in the registry
|
|
CPPUNIT_TEST_SUITE_REGISTRATION (FColorPairTest);
|
|
|
|
// The general unit test main part
|
|
#include <main-test.inc>
|