Separated test suites into their individual modules
- Building per module only requires to have split test utility sections - System module tests are always added, as the system module is always built
This commit is contained in:
parent
7d496095a5
commit
d402ce5a5d
11 changed files with 154 additions and 73 deletions
23
test/src/TestUtilities/Graphics.hpp
Normal file
23
test/src/TestUtilities/Graphics.hpp
Normal file
|
@ -0,0 +1,23 @@
|
|||
// Header for SFML unit tests.
|
||||
//
|
||||
// For a new graphics module test case, include this header and not <catch.hpp> directly.
|
||||
// This ensures that string conversions are visible and can be used by Catch for debug output.
|
||||
|
||||
#ifndef SFML_TESTUTILITIES_GRAPHICS_HPP
|
||||
#define SFML_TESTUTILITIES_GRAPHICS_HPP
|
||||
|
||||
#include "Window.hpp"
|
||||
|
||||
// Forward declarations for non-template types
|
||||
namespace sf
|
||||
{
|
||||
class Color;
|
||||
}
|
||||
|
||||
// String conversions for Catch framework
|
||||
namespace Catch
|
||||
{
|
||||
std::string toString(const sf::Color& color);
|
||||
}
|
||||
|
||||
#endif // SFML_TESTUTILITIES_GRAPHICS_HPP
|
Loading…
Add table
Add a link
Reference in a new issue