1
0
mirror of https://github.com/pevans/erc-c.git synced 2024-07-20 07:28:56 +00:00
erc-c/tests/apple2.c
2017-12-06 14:36:14 -06:00

13 lines
194 B
C

#include <criterion/criterion.h>
#include "apple2.h"
Test(apple2, create)
{
apple2 *mach;
mach = apple2_create();
cr_assert_neq(mach, NULL);
cr_assert_neq(mach->cpu, NULL);
}