Java Doc for AbstractClinicTests.java in  » Search-Engine » compass-2.0 » org » compass » sample » petclinic » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Search Engine » compass 2.0 » org.compass.sample.petclinic 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.compass.sample.petclinic.AbstractClinicTests

All known Subclasses:   org.compass.sample.petclinic.jdbc.JdbcClinicTests,  org.compass.sample.petclinic.hibernate.HibernateClinicTests,  org.compass.sample.petclinic.ojb.PersistenceBrokerClinicTests,
AbstractClinicTests
abstract public class AbstractClinicTests extends TestCase (Code)
Base class for Clinic tests. Allows subclasses to specify context locations.

This class extends AbstractTransactionalDataSourceSpringContextTests, one of the valuable test superclasses provided in the org.springframework.test package. This represents best practice for integration tests with Spring. The AbstractTransactionalDataSourceSpringContextTests superclass provides the following services:

  • Injects test dependencies, meaning that we don't need to perform application context lookups. See the setClinic() method. Injection uses autowiring by type.
  • Executes each test method in its own transaction, which is automatically rolled back by default. This means that even if tests insert or otherwise change database state, there is no need for a teardown or cleanup script.
  • Provides useful inherited protected fields, such as a JdbcTemplate that can be used to verify database state after test operations, or verify the results of queries performed by application code. An ApplicationContext is also inherited, and can be used for explicit lookup if necessary.

    The AbstractTransactionalDataSourceSpringContextTests and related classes are shipped in the spring-mock.jar.
    author:
       Ken Krebs
    author:
       Rod Johnson
    See Also:   org.springframework.test.AbstractTransactionalDataSourceSpringContextTests



  • Field Summary
    protected  Clinicclinic
        
    protected  Compasscompass
        
    protected  CompassGpscompassGps
        
    protected  CompassGpsDevicecompassGpsDevice
        
    protected  CompassTemplatecompassTemplate
        


    Method Summary
    protected  voiddoPerformMirroringIfNeeded()
        
    abstract protected  String[]getConfigLocations()
        
    abstract protected  booleanhasClassMappings()
        
    public  voidsetClinic(Clinic clinic)
         This method is provided to set the Clinic instance being tested by the Dependency Injection injection behaviour of the superclass from the org.springframework.test package.
    public  voidsetCompass(Compass compass)
        
    public  voidsetCompassGps(CompassGps compassGps)
        
    public  voidsetCompassGpsDevice(CompassGpsDevice compassGpsDevice)
        
    public  voidsetDataSource(DataSource dataSource)
        
    public  voidsetTransactionManager(PlatformTransactionManager transactionManager)
        
    protected  voidsetUp()
        
    protected  voidtearDown()
        
    public  voidtestCompassReindex()
        
    public  voidtestFindOwners()
        
    public  voidtestGetPetTypes()
        
    public  voidtestGetVets()
        
    public  voidtestInsertOwner()
        
    public  voidtestInsertOwnerCompassMirror()
        
    public  voidtestInsertPet()
        
    public  voidtestInsertPetCompassMirror()
        
    public  voidtestInsertVisit()
        
    public  voidtestLoadOwner()
        
    public  voidtestLoadPet()
        
    public  voidtestUpdateOwner()
        
    public  voidtestUpdateOwnerCompassMirror()
        
    public  voidtestUpdatePet()
        
    public  voidtestUpdatePetCompassMirror()
        

    Field Detail
    clinic
    protected Clinic clinic(Code)



    compass
    protected Compass compass(Code)



    compassGps
    protected CompassGps compassGps(Code)



    compassGpsDevice
    protected CompassGpsDevice compassGpsDevice(Code)



    compassTemplate
    protected CompassTemplate compassTemplate(Code)





    Method Detail
    doPerformMirroringIfNeeded
    protected void doPerformMirroringIfNeeded()(Code)
    If the gps device is active mirror type, perform the mirroring



    getConfigLocations
    abstract protected String[] getConfigLocations()(Code)



    hasClassMappings
    abstract protected boolean hasClassMappings()(Code)



    setClinic
    public void setClinic(Clinic clinic)(Code)
    This method is provided to set the Clinic instance being tested by the Dependency Injection injection behaviour of the superclass from the org.springframework.test package.
    Parameters:
      clinic - clinic to test



    setCompass
    public void setCompass(Compass compass)(Code)



    setCompassGps
    public void setCompassGps(CompassGps compassGps)(Code)



    setCompassGpsDevice
    public void setCompassGpsDevice(CompassGpsDevice compassGpsDevice)(Code)



    setDataSource
    public void setDataSource(DataSource dataSource)(Code)



    setTransactionManager
    public void setTransactionManager(PlatformTransactionManager transactionManager)(Code)



    setUp
    protected void setUp() throws Exception(Code)



    tearDown
    protected void tearDown() throws Exception(Code)



    testCompassReindex
    public void testCompassReindex()(Code)



    testFindOwners
    public void testFindOwners()(Code)



    testGetPetTypes
    public void testGetPetTypes()(Code)



    testGetVets
    public void testGetVets()(Code)



    testInsertOwner
    public void testInsertOwner()(Code)



    testInsertOwnerCompassMirror
    public void testInsertOwnerCompassMirror()(Code)



    testInsertPet
    public void testInsertPet()(Code)



    testInsertPetCompassMirror
    public void testInsertPetCompassMirror()(Code)



    testInsertVisit
    public void testInsertVisit()(Code)



    testLoadOwner
    public void testLoadOwner()(Code)



    testLoadPet
    public void testLoadPet()(Code)



    testUpdateOwner
    public void testUpdateOwner() throws Exception(Code)



    testUpdateOwnerCompassMirror
    public void testUpdateOwnerCompassMirror() throws Exception(Code)



    testUpdatePet
    public void testUpdatePet() throws Exception(Code)



    testUpdatePetCompassMirror
    public void testUpdatePetCompassMirror() throws Exception(Code)



    www.java2java.com | Contact Us
    Copyright 2009 - 12 Demo Source and Support. All rights reserved.
    All other trademarks are property of their respective owners.