dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #40039
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 20273: Tests
------------------------------------------------------------
revno: 20273
committer: Lars Helge Overland <larshelge@xxxxxxxxx>
branch nick: dhis2
timestamp: Mon 2015-09-21 21:24:08 +0200
message:
Tests
modified:
dhis-2/dhis-api/src/test/java/org/hisp/dhis/period/RelativePeriodTest.java
--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk
Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== modified file 'dhis-2/dhis-api/src/test/java/org/hisp/dhis/period/RelativePeriodTest.java'
--- dhis-2/dhis-api/src/test/java/org/hisp/dhis/period/RelativePeriodTest.java 2015-09-16 14:49:50 +0000
+++ dhis-2/dhis-api/src/test/java/org/hisp/dhis/period/RelativePeriodTest.java 2015-09-21 19:24:08 +0000
@@ -128,6 +128,28 @@
assertTrue( relatives.contains( new Period( new WeeklyPeriodType(), getDate( 2000, 1, 24 ), getDate( 2000, 1, 30 ) ) ) );
assertTrue( relatives.contains( new Period( new WeeklyPeriodType(), getDate( 2001, 1, 1 ), getDate( 2001, 1, 7 ) ) ) );
}
+
+ @Test
+ public void testGetThisMonth()
+ {
+ RelativePeriods periods = new RelativePeriods().setThisMonth( true );
+
+ List<Period> relatives = periods.getRelativePeriods( getDate( 2001, 7, 15 ), I18N_FORMAT, false );
+
+ assertEquals( 1, relatives.size() );
+ assertEquals( new Period( new MonthlyPeriodType(), getDate( 2001, 7, 1 ), getDate( 2001, 7, 31 ) ), relatives.get( 0 ) );
+ }
+
+ @Test
+ public void testGetLastMonth()
+ {
+ RelativePeriods periods = new RelativePeriods().setLastMonth( true );
+
+ List<Period> relatives = periods.getRelativePeriods( getDate( 2001, 7, 15 ), I18N_FORMAT, false );
+
+ assertEquals( 1, relatives.size() );
+ assertEquals( new Period( new MonthlyPeriodType(), getDate( 2001, 6, 1 ), getDate( 2001, 6, 30 ) ), relatives.get( 0 ) );
+ }
@Test
public void testGetRewindedRelativePeriods()