Add smoke test for Gradle compatibility

This commit is contained in:
aliamaliam2fbusiness committed 2026-02-20 12:37:57 -06:00
1 parent 86ddd4728d
commit ef6942bf93
1 file changed
+13
@@ -0,0 +1,13 @@
package com.thealiamalia.exposebankstate;
import org.junit.Test;
import static org.junit.Assert.*;
public class ExposeBankStateSmokeTest
{
@Test
public void smoke()
{
assertTrue(true);
}
}