1. Project Clover database Wed Nov 12 2025 05:07:35 UTC
  2. Package guru.mikelue.foxglove.springframework

File EnableFoxglove.java

 

Code metrics

0
0
0
1
23
11
0
-
-
0
-

Classes

Class Line # Actions
EnableFoxglove 23 0 - 0 0
-1.0 -
 

Contributing tests

No tests hitting this source file were found.

Source view

1    package guru.mikelue.foxglove.springframework;
2   
3    import java.lang.annotation.*;
4   
5    import org.springframework.test.context.TestExecutionListeners;
6   
7    /**
8    * Composite annotation to enable Foxglove test features.
9    *
10    * <p>
11    * This annotation registers {@link FoxgloveTestListener} to {@link TestExecutionListeners},
12    * with merging mode of {@link TestExecutionListeners.MergeMode#MERGE_WITH_DEFAULTS}.
13    *
14    * @see FoxgloveTestListener
15    */
16    @Target({ElementType.TYPE, ElementType.ANNOTATION_TYPE})
17    @Retention(RetentionPolicy.RUNTIME)
18    @Documented @Inherited
19    @TestExecutionListeners(
20    listeners = FoxgloveTestListener.class,
21    mergeMode = TestExecutionListeners.MergeMode.MERGE_WITH_DEFAULTS
22    )
 
23    public @interface EnableFoxglove {}