f7
f7 is a spreadsheet formula execution library
git clone https://git.vogt.world/f7.git
Log | Files | README.md | LICENSE.md
← All files
name: src/test/java/io/protobase/f7/spreadsheet/OverallTest.java
-rw-r--r--
368
 1package io.protobase.f7.spreadsheet;
 2
 3import io.protobase.f7.testutils.TestWithTSVExecution;
 4import org.junit.Test;
 5
 6import java.io.IOException;
 7
 8public class OverallTest extends TestWithTSVExecution {
 9  @Test
10  public void simple() throws IOException {
11    runTest("simple");
12  }
13
14  @Test
15  public void lineItem() throws IOException {
16    runTest("line_item");
17  }
18}