Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature add gtest #70

Merged
merged 5 commits into from
Oct 26, 2017
Merged

Feature add gtest #70

merged 5 commits into from
Oct 26, 2017

Commits on Sep 28, 2017

  1. Configuration menu
    Copy the full SHA
    e3cecf5 View commit details
    Browse the repository at this point in the history
  2. Updated build targets in makefile for gtests

    - new targets 'gtest' and 'gtest_clean'
    - updated target 'cleaner' to include what 'gtest_clean' does
    
    - very simple test case 'test/sw_test.cc'
    dschlaep committed Sep 28, 2017
    Configuration menu
    Copy the full SHA
    53f3e8f View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2017

  1. Configuration menu
    Copy the full SHA
    a1a341f View commit details
    Browse the repository at this point in the history
  2. gtest is now functional

    - Added main() to sw_test.cc
    - added 'sw_test' executable to .gitignore
    
    ```
    make gtest
    ./sw_test
    ```
    
    > [==========] Running 1 test from 1 test case.
    > [----------] Global test environment set-up.
    > [----------] 1 test from IsTestTest
    > [ RUN      ] IsTestTest.Failure
    > [       OK ] IsTestTest.Failure (0 ms)
    > [----------] 1 test from IsTestTest (0 ms total)
    >
    > [----------] Global test environment tear-down
    > [==========] 1 test from 1 test case ran. (0 ms total)
    > [  PASSED  ] 1 test.
    dschlaep committed Sep 29, 2017
    Configuration menu
    Copy the full SHA
    f4f7e53 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    96e3f3c View commit details
    Browse the repository at this point in the history