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/GeneralExpressionTest.java
-rw-r--r--
409
 1package io.protobase.f7.spreadsheet;
 2
 3import io.protobase.f7.testutils.TestExecution;
 4import org.junit.Test;
 5
 6public class GeneralExpressionTest extends TestExecution {
 7  @Test
 8  public void test_Parentheses() {
 9    runner().addCell("Alpha", "A1", "= (TRUE)").addExpectedValue("Alpha", "A1", true).run();
10    runner().addCell("Alpha", "A1", "= (2 + 1) * 4").addExpectedValue("Alpha", "A1", 12.0).run();
11  }
12}