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