From 912f37344fd4d48be1440eb8161f05b1fb2bb52a Mon Sep 17 00:00:00 2001 From: kerboul Date: Wed, 8 Apr 2026 15:45:34 +0200 Subject: [PATCH] Add test target to Makefile for running unit tests --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index eb09b43..1d295f1 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,13 @@ -.PHONY: build dominos nim clean +.PHONY: build dominos nim test clean JAR = build/libs/iialib.jar build: gradle build +test: + gradle test + dominos: $(JAR) java -cp $(JAR) games.dominos.DominosGame