Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
75 lines (57 loc) · 2.02 KB

File metadata and controls

75 lines (57 loc) · 2.02 KB
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
Copyright (C) 2011 Markus Kauppila <markus.kauppila@gmail.com>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
Jun 6, 2011
Jun 6, 2011
21
22
23
24
25
26
/*! \file
* Dummy test suite for test runner. This can be used as a base for
* writing new tests. Dummy suite also works as reference to using
* various asserts and (possible) other utilities.
*/
27
28
#include <stdio.h>
May 23, 2011
May 23, 2011
29
#include <SDL/SDL.h>
May 30, 2011
May 30, 2011
31
#include "../SDL_test.h"
May 23, 2011
May 23, 2011
32
Jun 6, 2011
Jun 6, 2011
33
34
35
// \todo add some helpful commenting for possible test writers?
/* Test case references */
May 30, 2011
May 30, 2011
36
static const TestCaseReference test1 =
Jun 11, 2011
Jun 11, 2011
37
(TestCaseReference){ "dummycase1", "description", TEST_ENABLED, 0, 0};
May 27, 2011
May 27, 2011
38
May 30, 2011
May 30, 2011
39
static const TestCaseReference test2 =
Jun 11, 2011
Jun 11, 2011
40
(TestCaseReference){ "dummycase2", "description", TEST_ENABLED, 0, 0};
May 30, 2011
May 30, 2011
41
42
static const TestCaseReference test3 =
Jun 11, 2011
Jun 11, 2011
43
(TestCaseReference){ "dummycase3", "description", TEST_ENABLED, 0, 0};
May 27, 2011
May 27, 2011
44
45
46
/* Test suite */
extern const TestCaseReference *testSuite[] = {
May 30, 2011
May 30, 2011
47
&test1, &test2, &test3, NULL
May 26, 2011
May 26, 2011
48
49
};
May 23, 2011
May 23, 2011
50
May 30, 2011
May 30, 2011
51
TestCaseReference **QueryTestSuite() {
May 27, 2011
May 27, 2011
52
return (TestCaseReference **)testSuite;
May 30, 2011
May 30, 2011
55
/* Test case functions */
Jun 9, 2011
Jun 9, 2011
56
57
void
dummycase1(void *arg)
May 30, 2011
May 30, 2011
58
{
Jul 10, 2011
Jul 10, 2011
59
AssertEquals(5, 5, "Assert message");
Jun 9, 2011
Jun 9, 2011
62
63
void
dummycase2(void *arg)
May 30, 2011
May 30, 2011
64
{
65
char *msg = "eello";
May 30, 2011
May 30, 2011
66
//msg[0] = 'H';
Jul 10, 2011
Jul 10, 2011
67
AssertTrue(1, "Assert message");
Jun 9, 2011
Jun 9, 2011
70
71
void
dummycase3(void *arg)
May 30, 2011
May 30, 2011
72
{
Jul 10, 2011
Jul 10, 2011
73
AssertTrue(1, "Assert message");