summaryrefslogtreecommitdiff
path: root/AlgoDesignAndTechniqueEdxJava/tests/APlusBTest.java
blob: 868f85339a56ecc166f9d1d788d7e16c099fbd5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import static org.junit.jupiter.api.Assertions.*;

import org.junit.jupiter.api.Test;

class APlusBTest {

	@Test
	void test() {
		assertEquals(5, APlusB.add(2,3));
	}

}