Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/src/test/java/de/intevation/gnv/artifacts/GNVArtifactsTestCaseBase.java @ 595:e0d7b8a0bc42
Compilance-Errors triggered by Interface-Modifications in the Artifact-Module.
Some Refactoringwork affecting the JunitTest-Classes done.
gnv-artifacts/trunk@651 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Tim Englich <tim.englich@intevation.de> |
---|---|
date | Mon, 01 Feb 2010 14:14:19 +0000 |
parents | 4080b57dcb52 |
children | 9a828e5a2390 |
comparison
equal
deleted
inserted
replaced
594:5b9b74c08bbb | 595:e0d7b8a0bc42 |
---|---|
170 } | 170 } |
171 } | 171 } |
172 return null; | 172 return null; |
173 } | 173 } |
174 | 174 |
175 /** | |
176 * @param artifactFactory | |
177 * @return | |
178 */ | |
179 protected Artifact createArtifact(ArtifactFactory artifactFactory) { | |
180 Document setupData = null; | |
181 Artifact artifact = artifactFactory.createArtifact( | |
182 "" + System.currentTimeMillis(), | |
183 bootstrap.getContext(), | |
184 setupData); | |
185 assertNotNull(artifact); | |
186 log.debug("Artifact is available"); | |
187 return artifact; | |
188 } | |
175 | 189 |
176 | 190 |
177 } | 191 } |