1 /* 2 * Copyright 2007, Haiku. All rights reserved. 3 * Distributed under the terms of the MIT License. 4 * 5 * Authors: 6 * Michael Pfeiffer 7 */ 8 9 #ifndef _PICTURE_TEST_CASES_H 10 #define _PICTURE_TEST_CASES_H 11 12 #include "PictureTest.h" 13 14 typedef struct { 15 const char *name; 16 draw_func *func; 17 } TestCase; 18 19 // test NULL-terminated array of test cases 20 extern TestCase gTestCases[]; 21 22 #endif 23