From 363c699959501c6728611a3ce2294bbb9a2caebf Mon Sep 17 00:00:00 2001 From: "Jake W. Ireland" Date: Thu, 27 Aug 2020 00:23:19 +1200 Subject: [PATCH] added beginnings of testing package (touches on good practices regarding #8) --- test/runtests.jl | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 test/runtests.jl diff --git a/test/runtests.jl b/test/runtests.jl new file mode 100644 index 000000000..901207861 --- /dev/null +++ b/test/runtests.jl @@ -0,0 +1,10 @@ +#!/usr/bin/env bash + #= + exec julia --project="~/FaceDetection.jl/" "${BASH_SOURCE[0]}" "$@" -e "include(popfirst!(ARGS))" \ + "${BASH_SOURCE[0]}" "$@" + =# + +using Test +using FaceDetection + +# @test ... == ... \ No newline at end of file