File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
spring-test/src/main/kotlin/org/springframework/test/web/servlet/result Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -101,13 +101,15 @@ class CookieResultMatchersDsl internal constructor (private val actions: ResultA
101
101
102
102
/* *
103
103
* @see CookieResultMatchers.sameSite
104
+ * @since 6.0.8
104
105
*/
105
106
fun sameSite (name : String , matcher : Matcher <String >) {
106
107
actions.andExpect(matchers.sameSite(name, matcher))
107
108
}
108
109
109
110
/* *
110
111
* @see CookieResultMatchers.sameSite
112
+ * @since 6.0.8
111
113
*/
112
114
fun sameSite (name : String , sameSite : String ) {
113
115
actions.andExpect(matchers.sameSite(name, sameSite))
@@ -157,13 +159,15 @@ class CookieResultMatchersDsl internal constructor (private val actions: ResultA
157
159
158
160
/* *
159
161
* @see CookieResultMatchers.attribute
162
+ * @since 6.0.8
160
163
*/
161
164
fun attribute (name : String , attributeName : String , matcher : Matcher <String >) {
162
165
actions.andExpect(matchers.attribute(name, attributeName, matcher))
163
166
}
164
167
165
168
/* *
166
169
* @see CookieResultMatchers.attribute
170
+ * @since 6.0.8
167
171
*/
168
172
fun attribute (name : String , attributeName : String , attributeValue : String ) {
169
173
actions.andExpect(matchers.attribute(name, attributeName, attributeValue))
You can’t perform that action at this time.
0 commit comments