Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
plugins {
id 'io.spring.convention.spring-module'
id 'javadoc-warnings-error'
}

description = 'Spring Security Kerberos Test'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@

/**
* KerberosSecurityTestcase provides a base class for using MiniKdc with other testcases.
* KerberosSecurityTestcase starts the MiniKdc (@Before) before running tests, and stop
* the MiniKdc (@After) after the testcases, using default settings (working dir and kdc
* configurations).
* KerberosSecurityTestcase starts the MiniKdc (@BeforeEach) before running tests, and
* stop the MiniKdc (@AfterEach) after the testcases, using default settings (working dir
* and kdc configurations).
* <p>
* Users can directly inherit this class and implement their own test functions using the
* default settings, or override functions getTestDir() and createMiniKdcConf() to provide
Expand Down
Loading