Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

19 lines
270 B
C++

#pragma once
#include "unittestframework.h"
class TestUtils :
public UnitTestSuite
{
public:
TestUtils(void);
~TestUtils(void);
DECLARE_TEST_SUITE(TestUtils)
bool Setup();
bool TearDown(char* testName);
static bool TestAllocString();
};