forked from nus-cs2113-AY2324S2/tp
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add JUnit tests for Member class constructor
- Loading branch information
1 parent
4d4af2b
commit 0305ea6
Showing
5 changed files
with
56 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
package longah.node; | ||
|
||
import org.junit.jupiter.api.Test; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertEquals; | ||
import static org.junit.jupiter.api.Assertions.fail; | ||
|
||
import longah.exception.ExceptionMessage; | ||
|
||
public class MemberTest { | ||
@Test | ||
public void memberConstructor_validName_success() { | ||
try { | ||
Member member = new Member("Alice"); | ||
assertEquals("Alice", member.getName()); | ||
assertEquals(0.0, member.getBalance()); | ||
} catch (Exception e) { | ||
fail(); | ||
} | ||
} | ||
|
||
@Test | ||
public void memberConstructor_invalidName_exceptionThrown() { | ||
try { | ||
new Member("Alice123-"); | ||
fail(); | ||
} catch (Exception e) { | ||
String expectedString = ExceptionMessage.INVALID_MEMBER_NAME.getMessage(); | ||
assertEquals(expectedString, e.getMessage()); | ||
} | ||
} | ||
} |