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/GeneralSupportedLookupFormulasTest.java
-rw-r--r--
329
 1package io.protobase.f7.spreadsheet;
 2
 3import io.protobase.f7.testutils.TestExecution;
 4import org.junit.Test;
 5
 6public class GeneralSupportedLookupFormulasTest extends TestExecution {
 7  @Test
 8  public void test_CHOOSE() {
 9    runner().addCell("Alpha", "A1", "=CHOOSE(2, 1, 2, 3)").addExpectedValue("Alpha", "A1", 2.0).run();
10  }
11}