/
jiteman
/
jsd-foreign-libreoffice-cppunit
Обзор
Документация
Войти
/
jiteman
/
jsd-foreign-libreoffice-cppunit
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
examples/simple/ExampleTestCase.cpp
62 строки
1 KB
jiteman
initial commit has been done
14 апр 2024, 15:49
14 апр 2024, 15:49
4c53812
Код
Авторство
О чём код?
#include <cppunit/config/SourcePrefix.h> #include "ExampleTestCase.h" CPPUNIT_TEST_SUITE_REGISTRATION( ExampleTestCase ); void ExampleTestCase::example() { CPPUNIT_ASSERT_DOUBLES_EQUAL( 1.0, 1.1, 0.05 ); CPPUNIT_ASSERT( 1 == 0 ); CPPUNIT_ASSERT( 1 == 1 ); } void ExampleTestCase::anotherExample() { CPPUNIT_ASSERT (1 == 2); } void ExampleTestCase::setUp() { m_value1 = 2.0; m_value2 = 3.0; } void ExampleTestCase::testAdd() { double result = m_value1 + m_value2; CPPUNIT_ASSERT( result == 6.0 ); } void ExampleTestCase::testEquals() { long* l1 = new long(12); long* l2 = new long(12); CPPUNIT_ASSERT_EQUAL( 12, 12 ); CPPUNIT_ASSERT_EQUAL( 12L, 12L ); CPPUNIT_ASSERT_EQUAL( *l1, *l2 ); delete l1; delete l2; CPPUNIT_ASSERT( 12L == 12L ); CPPUNIT_ASSERT_EQUAL( 12, 13 ); CPPUNIT_ASSERT_DOUBLES_EQUAL( 12.0, 11.99, 0.5 ); } class FixtureTest : public CPPUNIT_NS::TestFixture { }; CPPUNIT_TEST_FIXTURE(FixtureTest, testEquals) { CPPUNIT_ASSERT_EQUAL( 12, 12 ); } CPPUNIT_TEST_FIXTURE(FixtureTest, testAdd) { double result = 2.0 + 2.0; CPPUNIT_ASSERT( result == 4.0 ); }