1
0
Fork 0

Add some JavaDoc to CVDATPJUnitTest

This commit is contained in:
Ethanell 2020-04-24 10:40:19 +02:00
parent 50e9e5e219
commit 3be226d5c0

View file

@ -3,8 +3,15 @@ package cvdatpjunit;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.Assertions;
/**
* This class are tests for the CVDATPJUnit class
* @author Florian Charlaix
*/
class CVDATPJUnitTest {
/**
* This function test the swapTwoLast static function
*/
@Test
void swapTwoLastTest() {
Assertions.assertEquals("BA", CVDATPJUnit.swapTwoLast("AB"));