headers
Project: http://git-wip-us.apache.org/repos/asf/incubator-streams/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-streams/commit/0012cd6d Tree: http://git-wip-us.apache.org/repos/asf/incubator-streams/tree/0012cd6d Diff: http://git-wip-us.apache.org/repos/asf/incubator-streams/diff/0012cd6d Branch: refs/heads/master Commit: 0012cd6daa147edff9d7c1485ad80474180663ea Parents: c44ebff Author: sblackmon <[email protected]> Authored: Mon Dec 1 15:12:41 2014 -0600 Committer: sblackmon <[email protected]> Committed: Mon Dec 1 15:12:41 2014 -0600 ---------------------------------------------------------------------- .../data/data/util/CustomDateTimeFormat.java | 2 +- .../data/util/CustomDateTimeFormatTest.java | 3 +- .../data/data/util/DateTimeSerDeTest.java | 3 +- .../streams/data/data/util/JsonUtilTest.java | 31 -------------------- .../data/data/util/RFC3339UtilsTest.java | 3 ++ 5 files changed, 8 insertions(+), 34 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/0012cd6d/streams-pojo/src/test/java/org/apache/streams/data/data/util/CustomDateTimeFormat.java ---------------------------------------------------------------------- diff --git a/streams-pojo/src/test/java/org/apache/streams/data/data/util/CustomDateTimeFormat.java b/streams-pojo/src/test/java/org/apache/streams/data/data/util/CustomDateTimeFormat.java index a599248..864ce39 100644 --- a/streams-pojo/src/test/java/org/apache/streams/data/data/util/CustomDateTimeFormat.java +++ b/streams-pojo/src/test/java/org/apache/streams/data/data/util/CustomDateTimeFormat.java @@ -3,7 +3,7 @@ package org.apache.streams.data.data.util; import org.apache.streams.jackson.StreamsDateTimeFormat; /** - * Created by sblackmon on 12/1/14. + * Supporting class for {@link org.apache.streams.data.data.util.CustomDateTimeFormatTest} */ public class CustomDateTimeFormat implements StreamsDateTimeFormat { http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/0012cd6d/streams-pojo/src/test/java/org/apache/streams/data/data/util/CustomDateTimeFormatTest.java ---------------------------------------------------------------------- diff --git a/streams-pojo/src/test/java/org/apache/streams/data/data/util/CustomDateTimeFormatTest.java b/streams-pojo/src/test/java/org/apache/streams/data/data/util/CustomDateTimeFormatTest.java index 922b28b..dbff9d4 100644 --- a/streams-pojo/src/test/java/org/apache/streams/data/data/util/CustomDateTimeFormatTest.java +++ b/streams-pojo/src/test/java/org/apache/streams/data/data/util/CustomDateTimeFormatTest.java @@ -11,7 +11,8 @@ import org.junit.Test; import static org.junit.Assert.assertEquals; /** - * Created by sblackmon on 12/1/14. + * Testing {@link org.apache.streams.jackson.StreamsJacksonMapper} ability to bind + * custom DateTime formats. */ public class CustomDateTimeFormatTest { http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/0012cd6d/streams-pojo/src/test/java/org/apache/streams/data/data/util/DateTimeSerDeTest.java ---------------------------------------------------------------------- diff --git a/streams-pojo/src/test/java/org/apache/streams/data/data/util/DateTimeSerDeTest.java b/streams-pojo/src/test/java/org/apache/streams/data/data/util/DateTimeSerDeTest.java index b9c5635..d882450 100644 --- a/streams-pojo/src/test/java/org/apache/streams/data/data/util/DateTimeSerDeTest.java +++ b/streams-pojo/src/test/java/org/apache/streams/data/data/util/DateTimeSerDeTest.java @@ -30,7 +30,8 @@ import org.slf4j.LoggerFactory; import static org.junit.Assert.assertEquals; /** - * Created by sblackmon on 3/31/14. + * Testing {@link org.apache.streams.jackson.StreamsJacksonMapper} ability to read and write + * RFC3339 format. */ public class DateTimeSerDeTest { http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/0012cd6d/streams-pojo/src/test/java/org/apache/streams/data/data/util/JsonUtilTest.java ---------------------------------------------------------------------- diff --git a/streams-pojo/src/test/java/org/apache/streams/data/data/util/JsonUtilTest.java b/streams-pojo/src/test/java/org/apache/streams/data/data/util/JsonUtilTest.java deleted file mode 100644 index 190be54..0000000 --- a/streams-pojo/src/test/java/org/apache/streams/data/data/util/JsonUtilTest.java +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * - * 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.apache.streams.data.data.util; - - -import org.junit.Ignore; -import org.junit.Test; - -public class JsonUtilTest { - - @Ignore @Test - public void testJsonToObject(){ - } - -} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/0012cd6d/streams-pojo/src/test/java/org/apache/streams/data/data/util/RFC3339UtilsTest.java ---------------------------------------------------------------------- diff --git a/streams-pojo/src/test/java/org/apache/streams/data/data/util/RFC3339UtilsTest.java b/streams-pojo/src/test/java/org/apache/streams/data/data/util/RFC3339UtilsTest.java index d9069c6..fc61ad4 100644 --- a/streams-pojo/src/test/java/org/apache/streams/data/data/util/RFC3339UtilsTest.java +++ b/streams-pojo/src/test/java/org/apache/streams/data/data/util/RFC3339UtilsTest.java @@ -33,6 +33,9 @@ import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertThat; import static org.junit.Assert.fail; +/** + * Testing {@link org.apache.streams.data.util.RFC3339Utils} + */ public class RFC3339UtilsTest { @Test
