Sha256: c49d4399d9f2eaa5985be87631e3ab841b1dad46a70b9472a2ee1aefd2fe9bfc

Contents?: true

Size: 278 Bytes

Versions: 7

Compression:

Stored size: 278 Bytes

Contents

#include <stddef.h>
#include "vendor/unity.h"
#include "../src/hello_world.h"

void test_hello(void)
{
   TEST_ASSERT_EQUAL_STRING("Hello, World!", hello());
}

int main(void)
{
   UnityBegin("test/test_hello_world.c");

   RUN_TEST(test_hello);

   UnityEnd();

   return 0;
}

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
trackler-2.2.1.46 tracks/c/exercises/hello-world/test/test_hello_world.c
trackler-2.2.1.45 tracks/c/exercises/hello-world/test/test_hello_world.c
trackler-2.2.1.44 tracks/c/exercises/hello-world/test/test_hello_world.c
trackler-2.2.1.43 tracks/c/exercises/hello-world/test/test_hello_world.c
trackler-2.2.1.42 tracks/c/exercises/hello-world/test/test_hello_world.c
trackler-2.2.1.41 tracks/c/exercises/hello-world/test/test_hello_world.c
trackler-2.2.1.40 tracks/c/exercises/hello-world/test/test_hello_world.c