Fix: 1
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 6s
Gitea Actions Demo / GoBuild (push) Failing after 4s

This commit is contained in:
2024-09-09 17:58:15 -04:00
commit 89a159224e
42 changed files with 569 additions and 0 deletions
@@ -0,0 +1,31 @@
package PrepSession;
import org.junit.Test;
import java.io.ByteArrayOutputStream;
import java.io.PrintStream;
import static org.junit.Assert.assertEquals;
public class FishTestCase {
// Fish hides successfully
@Test
public void test_fish_hides_successfully() {
Fish fish = new Fish();
// Assuming the output is checked via console output, we can use System.out to capture it.
// This is a simple example, in real scenarios, we might use a logging framework or mock the output.
ByteArrayOutputStream outContent = new ByteArrayOutputStream();
System.setOut(new PrintStream(outContent));
fish.Hiding();
assertEquals("The fish is going deeper to hide from the Eagle\n", outContent.toString());
}
@Test
public void test_fishAttack(){
Fish fish = new Fish();
ByteArrayOutputStream attckOut = new ByteArrayOutputStream();
System.setOut(new PrintStream(attckOut));
fish.Attacking();
assertEquals("The fish attacked a smaller fish\n", attckOut.toString());
}
}