Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The CreateDSTesetExtension no longer requires a parent test class #145

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Feb 4, 2024

  1. The CreateDSTesetExtension no longer requires a parent test class

    The previous behavior of the extension required the use `AbstractLdapTestUnit` or duplicating static variables named `classDirectoryService`/`methodDirectoryService`
    
    Now the directoryService can be injected into the test as a parameter, e.g.
    
    void myTest( DirectoryService directoryService ) { ... }
    
    A class level or method level DirectoryService will be injected automatically
    
    NOTE: The previous behavior will still work to ensure backward compatiblity.
    bdemers committed Feb 4, 2024
    Configuration menu
    Copy the full SHA
    cbea8ad View commit details
    Browse the repository at this point in the history