test created

This commit is contained in:
Joshua Perry 2023-02-05 19:08:43 +00:00
parent b1c6c7a964
commit 065bd15b3a
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
package com.r0r5chach;
import static org.junit.jupiter.api.Assertions.assertEquals;
import org.junit.jupiter.api.Test;
import com.r0r5chach.competitor.r6.R6Attacker;
public class R6AttackerTest {
@Test
public void r6AttackerGetAttackerTest() {
R6Attacker a = R6Attacker.GLAZ;
assertEquals("Glaz", a.getAttacker());
}
}