15 lines
344 B
Common Lisp
15 lines
344 B
Common Lisp
;;; -*- mode: lisp; coding: utf-8; -*-
|
|
(defpackage :ml-qmetrics/tests
|
|
(:use :cl :fiveam :ml-qmetrics/assessment))
|
|
|
|
(in-package :ml-qmetrics/tests)
|
|
|
|
(def-suite :first-tests
|
|
:description "Test suite for my-system")
|
|
|
|
(in-suite :first-tests)
|
|
|
|
(test test-something
|
|
(is (= 2 (+ 1 1)) "Basic addition should work"))
|
|
|
|
;; Add more tests as needed
|