Removed AvoidStarImport Rule
Added JavaDocType Rule
This commit is contained in:
@ -22,6 +22,9 @@
|
||||
*/
|
||||
package com.iluwatar.monad;
|
||||
|
||||
/**
|
||||
* Enumeration of Types of Sex
|
||||
*/
|
||||
public enum Sex {
|
||||
MALE, FEMALE
|
||||
}
|
||||
|
@ -22,6 +22,9 @@
|
||||
*/
|
||||
package com.iluwatar.monad;
|
||||
|
||||
/**
|
||||
* User Definition
|
||||
*/
|
||||
public class User {
|
||||
|
||||
private String name;
|
||||
|
@ -24,6 +24,9 @@ package com.iluwatar.monad;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
/**
|
||||
* Application Test
|
||||
*/
|
||||
public class AppTest {
|
||||
|
||||
@Test
|
||||
|
@ -30,6 +30,9 @@ import org.junit.rules.ExpectedException;
|
||||
|
||||
import java.util.Objects;
|
||||
|
||||
/**
|
||||
* Test for Monad Pattern
|
||||
*/
|
||||
public class MonadTest {
|
||||
|
||||
@Rule
|
||||
|
Reference in New Issue
Block a user