Skip to content
This repository has been archived by the owner on Jun 23, 2023. It is now read-only.

Latest commit

 

History

History
30 lines (17 loc) · 690 Bytes

PULL_REQUEST_TEMPLATE.md

File metadata and controls

30 lines (17 loc) · 690 Bytes

PULL REQUEST DESCRIPTION

ADD CONTENT HERE TO DESCRIBE THE PURPOSE OF THE PULL REQUEST

Testing

  • This new/modified code was covered by unit tests.

  • (insight) Was all tests written using TDD (Test Driven Development) style?

  • The CI (Windows, Linux, OSX) are working without issues.

  • Was new functionality documented?

  • The testing steps 1 - 2 below were followed

step 1

mkdir build; cd build; cmake -DADD_G3LOG_UNIT_TEST=ON ..

// linux/osx alternative, simply run: ./scripts/buildAndRunTests.sh

step 2: use one of these alternatives to run tests:

  • Cross-Platform: ctest
  • or ctest -V for verbose output
  • Linux: make test