Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
3d5530d1
Commit
3d5530d1
authored
Sep 16, 2019
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '2.1.x'
Closes gh-18234
parents
a0d2721e
9065c499
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
39 additions
and
1 deletion
+39
-1
TestTypeExcludeFilter.java
...ework/boot/test/context/filter/TestTypeExcludeFilter.java
+2
-1
AbstractJupiterTestWithConfigAndTestable.java
...text/filter/AbstractJupiterTestWithConfigAndTestable.java
+31
-0
TestTypeExcludeFilterTests.java
.../boot/test/context/filter/TestTypeExcludeFilterTests.java
+6
-0
No files found.
spring-boot-project/spring-boot-test/src/main/java/org/springframework/boot/test/context/filter/TestTypeExcludeFilter.java
View file @
3d5530d1
...
...
@@ -33,7 +33,8 @@ import org.springframework.core.type.classreading.MetadataReaderFactory;
class
TestTypeExcludeFilter
extends
TypeExcludeFilter
{
private
static
final
String
[]
CLASS_ANNOTATIONS
=
{
"org.junit.runner.RunWith"
,
"org.junit.jupiter.api.extension.ExtendWith"
,
"org.testng.annotations.Test"
};
"org.junit.jupiter.api.extension.ExtendWith"
,
"org.junit.platform.commons.annotation.Testable"
,
"org.testng.annotations.Test"
};
private
static
final
String
[]
METHOD_ANNOTATIONS
=
{
"org.junit.Test"
,
"org.junit.platform.commons.annotation.Testable"
,
"org.testng.annotations.Test"
};
...
...
spring-boot-project/spring-boot-test/src/test/java/org/springframework/boot/test/context/filter/AbstractJupiterTestWithConfigAndTestable.java
0 → 100644
View file @
3d5530d1
/*
* Copyright 2012-2019 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package
org
.
springframework
.
boot
.
test
.
context
.
filter
;
import
org.junit.platform.commons.annotation.Testable
;
import
org.springframework.context.annotation.Configuration
;
@Testable
public
abstract
class
AbstractJupiterTestWithConfigAndTestable
{
@Configuration
(
proxyBeanMethods
=
false
)
static
class
Config
{
}
}
spring-boot-project/spring-boot-test/src/test/java/org/springframework/boot/test/context/filter/TestTypeExcludeFilterTests.java
View file @
3d5530d1
...
...
@@ -79,6 +79,12 @@ class TestTypeExcludeFilterTests {
this
.
metadataReaderFactory
)).
isTrue
();
}
@Test
void
matchesNestedConfigurationClassWithoutTestMethodsIfItHasTestable
()
throws
Exception
{
assertThat
(
this
.
filter
.
match
(
getMetadataReader
(
AbstractJupiterTestWithConfigAndExtendWith
.
Config
.
class
),
this
.
metadataReaderFactory
)).
isTrue
();
}
@Test
void
matchesTestConfiguration
()
throws
Exception
{
assertThat
(
this
.
filter
.
match
(
getMetadataReader
(
SampleTestConfig
.
class
),
this
.
metadataReaderFactory
)).
isTrue
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment