Skip to content

Commit

Permalink
readme
Browse files Browse the repository at this point in the history
  • Loading branch information
thinks committed Sep 21, 2018
1 parent 5a3024e commit edaa48e
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,4 @@ thinks::ppm_io::WriteRgbImage("my_file.ppm", width, height, pixel_data);
```

## Tests
This repository includes a simple [CMake project](https://github.com/thinks/ppm-io/blob/master/test/CMakeLists.txt) for running a small test suite. The test can be found in [this](https://github.com/thinks/ppm-io/blob/master/test/include/thinks/testPpm.hpp) header file. At present the test project builds and runs without errors.
Tests are implemented in the [Catch2](https://github.com/catchorg/Catch2) framework.
File renamed without changes.
2 changes: 1 addition & 1 deletion test/main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
// found in the top-level directory of this distribution.

#define CATCH_CONFIG_MAIN
#include <catch.hpp>
#include <catch2/catch.hpp>
2 changes: 1 addition & 1 deletion test/ppm_io_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#include <string>
#include <vector>

#include <catch.hpp>
#include <catch2/catch.hpp>

#include <thinks/ppm_io/ppm_io.h>
#include <utils/catch_utils.h>
Expand Down
2 changes: 1 addition & 1 deletion test/utils/catch_utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#include <sstream>
#include <string>

#include <catch.hpp>
#include <catch2/catch.hpp>


namespace utils {
Expand Down

0 comments on commit edaa48e

Please sign in to comment.