Java tutorial
/* * * Copyright 2012-2014 Eurocommercial Properties NV * * * Licensed under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.incode.module.unittestsupport.dom.bean; import org.joda.time.DateTime; import org.joda.time.LocalDate; import org.joda.time.LocalDateTime; public class FixtureDatumFactoriesForJoda { public static PojoTester.FixtureDatumFactory<LocalDate> dates() { return new PojoTester.FixtureDatumFactory<>(LocalDate.class, new LocalDate(2012, 7, 19), new LocalDate(2012, 7, 20), new LocalDate(2012, 8, 19), new LocalDate(2013, 7, 19)); } public static PojoTester.FixtureDatumFactory<LocalDateTime> localDateTimes() { return new PojoTester.FixtureDatumFactory<>(LocalDateTime.class, new LocalDateTime(2012, 7, 19, 11, 15), new LocalDateTime(2012, 7, 20, 12, 20), new LocalDateTime(2012, 8, 19, 13, 30), new LocalDateTime(2013, 7, 19, 14, 45)); } public static PojoTester.FixtureDatumFactory<DateTime> dateTimes() { return new PojoTester.FixtureDatumFactory<>(DateTime.class, new DateTime(2012, 7, 19, 11, 15), new DateTime(2012, 7, 20, 12, 20), new DateTime(2012, 8, 19, 13, 30), new DateTime(2013, 7, 19, 14, 45)); } }