Package spock.mock


package spock.mock
  • Class
    Description
    Automatically attaches detached mocks DetachedMockFactory to a Specification.
     
    This factory allows the creations of mocks outside of a Specification, e.g., in a Spring configuration.
    Settings passed to the IMockMaker and created explicitly for the requested mock maker.
    Base interface for Java based mocks see MockingApi or DetachedMockFactory for more examples.
    Spock's mocking API primarily consists of the following factory methods: Mock() Creates a general-purpose test double that supports both stubbing and mocking. Stub() Creates a test double that supports stubbing but not mocking. Spy() Creates a test double that, by default, delegates all calls to a real object.
    Represents the ID of an IMockMaker.
    Provides constants and factory methods for known built-in IMockMaker implementations.