Skip to content

Commit

Permalink
test: add missing TestComponent2 (#1162)
Browse files Browse the repository at this point in the history
  • Loading branch information
timonback authored Jan 24, 2025
1 parent 8599b44 commit 98f35e5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@
ConfigurationClassScanner.class,
ComponentClassScanner.class,
DefaultBeanMethodsScanner.class,
TestComponent.class,
TestConditionalComponent.class,
TestOtherConditionalComponent.class
})
class SpringwolfClassScannerIntegrationTest {
@MockitoBean
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,6 @@
@ContextConfiguration(
classes = {
ComponentClassScanner.class,
TestComponent.class,
TestConditionalComponent.class,
TestOtherConditionalComponent.class
})
class ComponentClassScannerIntegrationTest {
@MockitoBean
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
// SPDX-License-Identifier: Apache-2.0
package io.github.springwolf.core.asyncapi.scanners.classes2;

import org.springframework.stereotype.Component;

/**
* Test component in another package
*/
@Component
public class TestComponent2 {}

0 comments on commit 98f35e5

Please sign in to comment.