File: listener.lisp

package info (click to toggle)
cl-xlunit 0.6.3-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, squeeze, stretch, wheezy
  • size: 92 kB
  • ctags: 110
  • sloc: lisp: 573; makefile: 39
file content (21 lines) | stat: -rw-r--r-- 533 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
;;;; *************************************************************************
;;;; FILE IDENTIFICATION
;;;;
;;;; ID:       $Id$
;;;; Purpose:  Listener functions for XLUnit
;;;;
;;;; *************************************************************************

(in-package #:xlunit)

(defclass test-listener ()
  ())

(defmethod start-test ((obj test-listener) tcase)
  (declare (ignore tcase)))

(defmethod end-test ((obj test-listener) tcase)
  (declare (ignore tcase)))