I keep finding more tests
This commit is contained in:
parent
a97443b1ed
commit
077f9df814
|
@ -3281,7 +3281,8 @@ public class FhirResourceDaoR4SearchNoHashesTest extends BaseJpaR4Test {
|
||||||
@Test
|
@Test
|
||||||
public void testDateSearchParametersShouldBeTimezoneIndependent() {
|
public void testDateSearchParametersShouldBeTimezoneIndependent() {
|
||||||
|
|
||||||
createObservationWithEffective("NO1", "2011-01-02T23:00:00-11:30");
|
createObservationWithEffective("NO1", "2011-01-01T23:00:00-11:30");
|
||||||
|
createObservationWithEffective("NO2", "2011-01-03T23:00:00+01:30");
|
||||||
|
|
||||||
createObservationWithEffective("YES01", "2011-01-02T00:00:00-11:30");
|
createObservationWithEffective("YES01", "2011-01-02T00:00:00-11:30");
|
||||||
createObservationWithEffective("YES02", "2011-01-02T00:00:00-10:00");
|
createObservationWithEffective("YES02", "2011-01-02T00:00:00-10:00");
|
||||||
|
|
|
@ -884,10 +884,10 @@ public class InMemorySubscriptionMatcherR4Test {
|
||||||
public void testDateSearchParametersShouldBeTimezoneIndependent() {
|
public void testDateSearchParametersShouldBeTimezoneIndependent() {
|
||||||
|
|
||||||
List<Observation> nlist = new ArrayList<>();
|
List<Observation> nlist = new ArrayList<>();
|
||||||
nlist.add(createObservationWithEffective("NO1", "2011-01-02T23:00:00-11:30"));
|
nlist.add(createObservationWithEffective("NO1", "2011-01-03T00:00:00+01:00"));
|
||||||
nlist.add(createObservationWithEffective("NO2", "2011-01-03T00:00:00+01:00"));
|
|
||||||
|
|
||||||
List<Observation> ylist = new ArrayList<>();
|
List<Observation> ylist = new ArrayList<>();
|
||||||
|
ylist.add(createObservationWithEffective("YES00", "2011-01-02T23:00:00-11:30"));
|
||||||
ylist.add(createObservationWithEffective("YES01", "2011-01-02T00:00:00-11:30"));
|
ylist.add(createObservationWithEffective("YES01", "2011-01-02T00:00:00-11:30"));
|
||||||
ylist.add(createObservationWithEffective("YES02", "2011-01-02T00:00:00-10:00"));
|
ylist.add(createObservationWithEffective("YES02", "2011-01-02T00:00:00-10:00"));
|
||||||
ylist.add(createObservationWithEffective("YES03", "2011-01-02T00:00:00-09:00"));
|
ylist.add(createObservationWithEffective("YES03", "2011-01-02T00:00:00-09:00"));
|
||||||
|
|
Loading…
Reference in New Issue