Skip to content

Instantly share code, notes, and snippets.

@michaelajr
Created May 26, 2018 17:11
Show Gist options
  • Save michaelajr/1853f87c1df53b5ca51a515749662e63 to your computer and use it in GitHub Desktop.
Save michaelajr/1853f87c1df53b5ca51a515749662e63 to your computer and use it in GitHub Desktop.
Maven For Pipelining, Part 3
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 <Michael.Andrews@eoniantech.com>
* @since 1.0
*/
@RunWith(WildcardPatternSuite.class)
@SuiteClasses("MessageTest_*.class")
public class MessageTest {
}
@michaelajr
Copy link
Author

michaelajr commented May 26, 2018

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment