activity-servist/t/t.lisp
Jaidyn Ann 5f1903b741 Add comprehensive testing package
… actually, this should’ve been committed a few
commits back. I guess I forgot to add the file!
Well, no need to edit git history just for that.
2024-06-23 12:58:01 -05:00

34 lines
1.2 KiB
Common Lisp

;;;; activity-servist/tests: Testing all of activity-servist.
;; Copyright © 2024 Jaidyn Levesque <jadedctrl@posteo.at>
;;
;; This program is free software: you can redistribute it and/or
;; modify it under the terms of the GNU Affero General Public License
;; as published by the Free Software Foundation, either version 3 of
;; the License, or (at your option) any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU Affero General Public License for more details.
;;
;; You should have received a copy of the GNU Affero General Public License
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(defpackage :activity-servist/tests
(:use :cl)
(:nicknames "AS/T")
(:export :run :run-with-summary))
(in-package :activity-servist/tests)
(defun run ()
"Run tests from all activity-servist subpackages."
(activity-servist/tests/signatures:run)
(activity-servist/tests/activity-vocabulary:run))
(defun run-with-summary ()
"Run tests with summary for all activity-servist subpackages."
(lisp-unit2:with-summary()
(run)))