Created
May 26, 2018 17:11
-
-
Save michaelajr/1853f87c1df53b5ca51a515749662e63 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 com.googlecode.junittoolbox.SuiteClasses; | |
import com.googlecode.junittoolbox.WildcardPatternSuite; | |
import org.junit.runner.RunWith; | |
/** | |
* Unit Test suite for the {@link Message} model. | |
* | |
* @author Michael Andrews <[email protected]> | |
* @since 1.0 | |
*/ | |
@RunWith(WildcardPatternSuite.class) | |
@SuiteClasses("MessageTest_*.class") | |
public class MessageTest { | |
} |
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