Skip to content

Commit

Permalink
Added util.config to be exported. Unit test is public.
Browse files Browse the repository at this point in the history
  • Loading branch information
cfries committed Nov 26, 2023
1 parent 95a41b0 commit f523f5a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 1 addition & 0 deletions src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@
exports net.finmath.timeseries;
exports net.finmath.timeseries.models.parametric;
exports net.finmath.util;
exports net.finmath.util.config;

requires java.base;
requires java.desktop;
Expand Down
6 changes: 2 additions & 4 deletions src/test/java/net/finmath/util/config/ConfigTreeTest.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package net.finmath.util.config;

import static org.junit.jupiter.api.Assertions.*;

import java.util.ArrayList;
import java.util.List;
import java.util.Map;
Expand All @@ -16,10 +14,10 @@
*
* @author Christian Fries
*/
class ConfigTreeTest {
public class ConfigTreeTest {

@Test
void test() {
public void test() {

/**
* Create a list of map of configs (this is the config file - each map is a row, the keys are the columns)
Expand Down

0 comments on commit f523f5a

Please sign in to comment.