Implement library build

This commit is contained in:
Christopher Schnick
2022-01-02 00:51:06 +01:00
parent d63882c5ff
commit 08bd127695
11 changed files with 162 additions and 11 deletions

View File

@@ -1,5 +1,6 @@
package io.xpipe.api.test;
import io.xpipe.api.DataSource;
import io.xpipe.api.DataTable;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
@@ -9,7 +10,7 @@ public class DataTableTest {
@Test
public void testGet() {
var table = DataTable.get("new folder:username");
var table = DataSource.get("new folder:username").asTable();
var r = table.read(2);
var a = 0;
}