Created
May 26, 2018 17:16
-
-
Save michaelajr/2acb77663d59a7cc31948934b3d6a96d to your computer and use it in GitHub Desktop.
Maven For Pipelining, Part 3
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
package com.eoniantech.echoapi.domain.model; | |
import org.junit.Test; | |
/** | |
* Test class for the {@link Message} model's constructor. | |
* | |
* @author Michael Andrews <[email protected]> | |
* @since 1.0 | |
*/ | |
public class MessageTest_constructor { | |
@SuppressWarnings("unused") | |
private Message message; | |
@Test | |
public void testMessage() { | |
message = new Message("this is a message"); | |
} | |
@Test(expected = IllegalArgumentException.class) | |
public void testMessage_null_message() { | |
message = new Message(null); | |
} | |
@Test(expected = IllegalArgumentException.class) | |
public void testMessage_empty_message() { | |
message = new Message(""); | |
} | |
@Test(expected = IllegalArgumentException.class) | |
public void testMessage_empty_message_with_spaces() { | |
message = new Message(" "); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://medium.com/eonian-technologies/maven-for-pipelining-part-3-a3057208d86e