/* * Copyright (C) 2024, UChicago Argonne, LLC * Licensed under the 3-clause BSD license. See accompanying LICENSE.txt file * in the top-level directory. */ package Octeres import org.scalatest.funsuite.AnyFunSuite class DataUDFTest extends AnyFunSuite { test("'add' should handle add 1 and 2") { val result = DataUDF.add(1, 2) assert(result == 3) } }