#include <string.h>
#include "template_stemlib/HelloWorld.h"
#include "unittest/TestSuite.h"

static void testHelloWorld() {
	const char * hello;
	
	hello = helloWorld();
	TestCase_assertStringEqual(hello, "Hello, world!");
}

TEST_SUITE(HelloWorldTest, testHelloWorld)
