01: package org.springunit.examples.errors;
02:
03: import org.springunit.framework.SpringUnitContext;
04: import org.springunit.framework.SpringUnitTest;
05:
06: public class IncorrectPropertyNameInXmlTest extends SpringUnitTest {
07:
08: public void testWillFail() throws Exception {
09: }
10:
11: public SpringUnitContext getIncorrectPropertyNameInXml() {
12: return incorrectPropertyNameInXml;
13: }
14:
15: public void setIncorrectPropertyNameInXml(
16: SpringUnitContext incorrectPropertyNameInXml) {
17: this .incorrectPropertyNameInXml = incorrectPropertyNameInXml;
18: }
19:
20: private SpringUnitContext incorrectPropertyNameInXml;
21:
22: }
|