]> asedeno.scripts.mit.edu Git - cl-protobufs.git/blob - tests/pkgdcl.lisp
define-proto: collect DEFTYPE forms before other forms
[cl-protobufs.git] / tests / pkgdcl.lisp
1 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2 ;;;                                                                  ;;;
3 ;;; Free Software published under an MIT-like license. See LICENSE   ;;;
4 ;;;                                                                  ;;;
5 ;;; Copyright (c) 2012 Google, Inc.  All rights reserved.            ;;;
6 ;;;                                                                  ;;;
7 ;;; Original author: Scott McKay                                     ;;;
8 ;;;                                                                  ;;;
9 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
10
11 (in-package "CL-USER")
12
13
14 ;;; Package declaration for Protobufs tests
15
16 (defpackage protobufs-test
17   (:nicknames :proto-test)
18   (:use :common-lisp :protobufs :protobufs-implementation)
19   (:shadowing-import-from :protobufs-implementation
20    "FIND-METHOD")
21   #+test-tools
22   (:import-from :qtest
23    "DEFINE-TEST"
24    "DEFINE-TEST-SUITE"
25    "REGISTER-TEST"
26    "RUN-TEST"
27    "ASSERT-EQUAL"
28    "ASSERT-TRUE"
29    "ASSERT-FALSE"
30    "ASSERT-ERROR"))
31
32 (defpackage protobuf-unittest
33   (:use :common-lisp :protobufs)
34   (:nicknames :pbtest))
35
36 (defpackage protobuf-unittest-import
37   (:use :common-lisp :protobufs)
38   (:nicknames :pbtestimp))
39
40 (defpackage protobuf-geodata
41   (:use :common-lisp :protobufs)
42   (:nicknames :geodata))
43
44 (defpackage protobuf-forward-reference-unittest
45   (:use :common-lisp :protobufs))