Skip to content

Commit f523f5a

Browse files
committed
Added util.config to be exported. Unit test is public.
1 parent 95a41b0 commit f523f5a

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

src/main/java/module-info.java

+1
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@
9494
exports net.finmath.timeseries;
9595
exports net.finmath.timeseries.models.parametric;
9696
exports net.finmath.util;
97+
exports net.finmath.util.config;
9798

9899
requires java.base;
99100
requires java.desktop;

src/test/java/net/finmath/util/config/ConfigTreeTest.java

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
package net.finmath.util.config;
22

3-
import static org.junit.jupiter.api.Assertions.*;
4-
53
import java.util.ArrayList;
64
import java.util.List;
75
import java.util.Map;
@@ -16,10 +14,10 @@
1614
*
1715
* @author Christian Fries
1816
*/
19-
class ConfigTreeTest {
17+
public class ConfigTreeTest {
2018

2119
@Test
22-
void test() {
20+
public void test() {
2321

2422
/**
2523
* 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

Comments
 (0)