1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.kns.datadictionary.validation.fieldlevel;
17
18 import org.junit.Test;
19 import org.kuali.test.KNSTestCase;
20 import org.kuali.test.KNSWithTestSpringContext;
21
22
23
24 @KNSWithTestSpringContext
25 public class YearValidationPatternTest extends KNSTestCase {
26 YearValidationPattern pattern;
27
28 @Override
29 public void setUp() throws Exception {
30 super.setUp();
31
32 pattern = new YearValidationPattern();
33 }
34
35 @Test public final void testMatches_valid1() {
36 assertTrue(pattern.matches("1901"));
37 }
38
39 @Test public final void testMatches_valid2() {
40 assertTrue(pattern.matches("1991"));
41 }
42
43 @Test public final void testMatches_valid3() {
44 assertTrue(pattern.matches("2005"));
45 }
46
47 @Test public final void testMatches_valid4() {
48 assertTrue(pattern.matches("1837"));
49 }
50
51
52 @Test public final void testMatches_invalid1() {
53 assertFalse(pattern.matches("992"));
54 }
55
56 @Test public final void testMatches_invalid2() {
57 assertFalse(pattern.matches("1514"));
58 }
59
60 @Test public final void testMatches_invalid3() {
61 assertFalse(pattern.matches("3103"));
62 }
63
64 @Test public final void testMatches_invalid4() {
65 assertFalse(pattern.matches("10001"));
66 }
67 }