13 lines
271 B
C
13 lines
271 B
C
|
#ifndef __TESTFUNCS_H__
|
||
|
#define __TESTFUNCS_H__
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
const std::string TEST_ARRAY_OUTPUT =
|
||
|
"[0-Cafe Rio, 1-Pappa Murphy's, 2-Quiznos, "
|
||
|
"3-Jimmy Johns, 4-Thai Chili Gardens, 5-Subway, 6-Taco Bell, 7-India Palace]";
|
||
|
|
||
|
const int TEST_ARRAY_SIZE = 8;
|
||
|
|
||
|
#endif
|