/jtest

Jtest is a unit testing framework built in c. It is used to write test-cases on c programs.

Primary LanguageC

Jtest

Jtest is a unit testing framework built in c. It is used to write test-cases on c programs.

Running the tests

  • add the test files in makefile
run: build
	./a

build:
	gcc \
	test/prog1.c \
	test/prog2.c \
	Main.c \
	-o a
  • execute make command
make