| At line 38 removed 1 line. |
|
| At line 83 changed 1 line. |
| assertEquals(person.getFirstName(), "Bill")); |
| assertEquals(person.getFirstName(), "Bill"); |
| At line 116 removed 2 lines. |
| import java.util.List; |
|
| At line 119 removed 1 line. |
| public List getPeople(Person person); |
| At line 136 removed 2 lines. |
| import java.util.List; |
|
| At line 145 removed 4 lines. |
| public List getPeople(Person person) { |
| return dao.getPeople(person); |
| } |
|
| At line 178 changed 1 line. |
| To notify Spring of this our PersonManager interface and it's implementation, open the src/service/**/service/applicationContext-service.xml file. In here, you should see a commented out definition for the "personManager" bean. Uncomment this, or add the following to the bottom of this file. |
| To notify Spring of this our PersonManager interface and its implementation, open the src/service/**/service/applicationContext-service.xml file. In here, you should see a commented out definition for the "personManager" bean. Uncomment this, or add the following to the bottom of this file. |
| At line 184 changed 1 line. |
| <bean class="org.appfuse.service.impl.PersonManagerImpl" autowire="true"/> |
| <bean class="org.appfuse.service.impl.PersonManagerImpl" autowire="byName"/> |
| At line 189 changed 1 line. |
| The "parent" attribute refers to a bean definition for a TransactionProxyFactoryBean that has all the basic transaction attributes set. |
| The "parent" attribute refers to a bean definition for a [TransactionProxyFactoryBean|http://www.springframework.org/docs/api/org/springframework/transaction/interceptor/TransactionProxyFactoryBean.html] that has all the basic transaction attributes set. |
| At line 194 changed 1 line. |
| Save all your edited files and try running "ant test-service -Dtestcase=PersonManager" one more time. |
| Save all your edited files and try running "ant test-service -Dtestcase=PersonManager". |