We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f59c70 commit 3d17dcdCopy full SHA for 3d17dcd
modules/jooby-test/src/main/java/io/jooby/JoobyTest.java
@@ -89,8 +89,19 @@
89
*/
90
Class<? extends Jooby> value();
91
92
+ /**
93
+ * Factory class (owner of {@link #factoryMethod()}. Use for create an application
94
+ * programmatically.
95
+ *
96
+ * @return Factory class or fallback for current test class.
97
+ */
98
Class<?> factoryClass() default Object.class;
99
100
101
+ * Name of factory method to create an application programmatically.
102
103
+ * @return Name of factory method to create an application programmatically.
104
105
String factoryMethod() default "";
106
107
/**
0 commit comments