We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95a41b0 commit f523f5aCopy full SHA for f523f5a
src/main/java/module-info.java
@@ -94,6 +94,7 @@
94
exports net.finmath.timeseries;
95
exports net.finmath.timeseries.models.parametric;
96
exports net.finmath.util;
97
+ exports net.finmath.util.config;
98
99
requires java.base;
100
requires java.desktop;
src/test/java/net/finmath/util/config/ConfigTreeTest.java
@@ -1,7 +1,5 @@
1
package net.finmath.util.config;
2
3
-import static org.junit.jupiter.api.Assertions.*;
4
-
5
import java.util.ArrayList;
6
import java.util.List;
7
import java.util.Map;
@@ -16,10 +14,10 @@
16
14
*
17
15
* @author Christian Fries
18
*/
19
-class ConfigTreeTest {
+public class ConfigTreeTest {
20
21
@Test
22
- void test() {
+ public void test() {
23
24
/**
25
* Create a list of map of configs (this is the config file - each map is a row, the keys are the columns)
0 commit comments