source: branches/new-datamodel/src/unit_tests/unittests-constants.lisp

Last change on this file was 160, checked in by lgiessmann, 15 years ago

changed the rdf2tm-mapping when exporting reifiers; fixed some problems in the rdf-reification-test-file

  • Property svn:eol-style set to native
File size: 4.0 KB
Line 
1;;+-----------------------------------------------------------------------------
2;;+  Isidorus
3;;+  (c) 2008-2009 Marc Kuester, Christoph Ludwig, Lukas Giessmann
4;;+
5;;+  Isidorus is freely distributable under the LGPL license.
6;;+  You can find a detailed description in trunk/docs/LGPL-LICENSE.txt.
7;;+-----------------------------------------------------------------------------
8
9
10(defpackage :unittests-constants
11  (:use :common-lisp)
12  (:import-from :constants
13                *isidorus-system*)
14  (:import-from :asdf
15                component-pathname
16                find-component)
17  (:export :*unit-tests-component*
18           :*unit-tests-path*
19           :*dangling_topicref.xtm*
20           :*inconsistent.xtm*               
21           :*notificationbase.xtm*           
22           :*notification_merge1.xtm*                     
23           :*notification_merge2.xtm*           
24           :*sample_objects_2_0.xtm*
25           :*dangling_instanceof.xtm*       
26           :*duplicate_identifier.xtm*       
27           :*inconsistent_2_0.xtm*           
28           :*sample_objects.xtm*             
29           :*t100.xtm*
30           :*atom_test.xtm*
31           :*atom-conf.lisp*
32           :*poems_light.rdf*
33           :*poems_light.xtm*
34           :*full_mapping.rdf*
35           :*reification_xtm1.0.xtm*
36           :*reification_xtm2.0.xtm*
37           :*reification.rdf*))
38
39(in-package :unittests-constants)
40
41(defparameter *unit-tests-component*
42  (asdf:find-component *isidorus-system* "unit_tests"))
43
44(defparameter *unit-tests-path*
45  (asdf:component-pathname *unit-tests-component*))
46
47(defparameter *dangling_topicref.xtm*
48  (asdf:component-pathname
49   (asdf:find-component *unit-tests-component* "dangling_topicref.xtm")))
50
51(defparameter *inconsistent.xtm*
52  (asdf:component-pathname
53   (asdf:find-component *unit-tests-component* "inconsistent.xtm")))               
54
55(defparameter *notificationbase.xtm*
56  (asdf:component-pathname
57   (asdf:find-component *unit-tests-component* "notificationbase.xtm")))           
58
59(defparameter *notification_merge1.xtm*
60  (asdf:component-pathname
61   (asdf:find-component *unit-tests-component* "notification_merge1.xtm")))           
62
63(defparameter *notification_merge2.xtm*
64  (asdf:component-pathname
65   (asdf:find-component *unit-tests-component* "notification_merge2.xtm")))           
66
67(defparameter *sample_objects_2_0.xtm*
68  (asdf:component-pathname
69   (asdf:find-component *unit-tests-component* "sample_objects_2_0.xtm")))
70
71(defparameter *dangling_instanceof.xtm*
72  (asdf:component-pathname
73   (asdf:find-component *unit-tests-component* "dangling_instanceof.xtm")))       
74
75(defparameter *duplicate_identifier.xtm*
76  (asdf:component-pathname
77   (asdf:find-component *unit-tests-component* "duplicate_identifier.xtm")))       
78
79(defparameter *inconsistent_2_0.xtm*
80  (asdf:component-pathname
81   (asdf:find-component *unit-tests-component* "inconsistent_2_0.xtm")))           
82
83(defparameter *sample_objects.xtm*
84  (asdf:component-pathname
85   (asdf:find-component *unit-tests-component* "sample_objects.xtm")))             
86
87(defparameter *t100.xtm*
88  (asdf:component-pathname
89   (asdf:find-component *unit-tests-component* "t100.xtm")))
90
91(defparameter *atom_test.xtm*
92  (asdf:component-pathname
93   (asdf:find-component *unit-tests-component* "atom_test.xtm")))
94
95(defparameter *atom-conf.lisp*
96  (asdf:component-pathname
97   (asdf:find-component *unit-tests-component* "atom-conf")))
98
99(defparameter *poems_light.rdf*
100  (asdf:component-pathname
101   (asdf:find-component *unit-tests-component* "poems_light.rdf")))
102
103(defparameter *poems_light.xtm*
104  (asdf:component-pathname
105   (asdf:find-component *unit-tests-component* "poems_light.xtm")))
106
107(defparameter *full_mapping.rdf*
108  (asdf:component-pathname
109   (asdf:find-component *unit-tests-component* "full_mapping.rdf")))
110
111(defparameter *reification_xtm1.0.xtm*
112  (asdf:component-pathname
113   (asdf:find-component *unit-tests-component* "reification_xtm1.0.xtm")))
114
115(defparameter *reification_xtm2.0.xtm*
116  (asdf:component-pathname
117   (asdf:find-component *unit-tests-component* "reification_xtm2.0.xtm")))
118
119(defparameter *reification.rdf*
120  (asdf:component-pathname
121   (asdf:find-component *unit-tests-component* "reification.rdf")))
Note: See TracBrowser for help on using the repository browser.