Add pixels test suite; add a test to pixel suite; minor updates to test code to make VisualStudio happy

This commit is contained in:
Andreas Schiffler 2013-05-01 22:14:29 -07:00
parent e83262a725
commit 985951f70e
7 changed files with 226 additions and 54 deletions

View file

@ -24,6 +24,7 @@ extern SDLTest_TestSuiteReference sdltestTestSuite;
extern SDLTest_TestSuiteReference videoTestSuite;
extern SDLTest_TestSuiteReference mouseTestSuite;
extern SDLTest_TestSuiteReference timerTestSuite;
extern SDLTest_TestSuiteReference pixelsTestSuite;
// All test suites
SDLTest_TestSuiteReference *testSuites[] = {
@ -42,6 +43,7 @@ SDLTest_TestSuiteReference *testSuites[] = {
&videoTestSuite,
&mouseTestSuite,
&timerTestSuite,
&pixelsTestSuite,
NULL
};