Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

General SetupSpecificsPreferred ApproachExample
Class under tests operates on JCR Nodeonly few calls to common methods of the Nodeuse MockNode if it supports those calls, Mockito mock else 
 need a simple hierarchy of Nodesdirectly use MockNode()MockNode if it supports those calls, Mockito mock else 
 need a simple hierarchy of Nodes but with several propertiesuse SessionTestUtil to instantiate MockSession + MockNodes from propertiesStream or String 
 need a complex hierarchy of Nodes, real NodeTypes or issue real queriesuse RepositoryTestCase 

...