View Javadoc

1   /*
2    * To change this template, choose Tools | Templates
3    * and open the template in the editor.
4    */
5   package org.kuali.student.enrollment.class2.courseofferingset.service.impl;
6   
7   import org.junit.runner.RunWith;
8   import org.springframework.test.context.ContextConfiguration;
9   import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
10  import org.springframework.test.context.transaction.TransactionConfiguration;
11  import org.springframework.transaction.annotation.Transactional;
12  
13  /**
14   * Tests the jpa persistence impl
15   *
16   * @author Kuali Student Team
17   */
18  @RunWith(SpringJUnit4ClassRunner.class)
19  @ContextConfiguration(locations = {"classpath:soc-businesslogic-with-fewer-mocks-test-context.xml"})
20  @TransactionConfiguration(transactionManager = "JtaTxManager", defaultRollback = true)
21  @Transactional
22  public class TestCourseOfferingSetServiceBusinessLogicWithFewerMocks 
23      extends TestCourseOfferingSetServiceBusinessLogicWithMocks {
24  
25  }