You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@deltaspike.apache.org by li...@apache.org on 2012/01/04 22:34:22 UTC

git commit: Adding a dummy test to see if Surefire is happy for CI.

Updated Branches:
  refs/heads/master 6be5d41ee -> 4122be457


Adding a dummy test to see if Surefire is happy for CI.


Project: http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/commit/4122be45
Tree: http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/tree/4122be45
Diff: http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/diff/4122be45

Branch: refs/heads/master
Commit: 4122be457e5fc76f11ce04b023feb71918a8bb23
Parents: 6be5d41
Author: Jason Porter <li...@apache.org>
Authored: Wed Jan 4 14:34:08 2012 -0700
Committer: Jason Porter <li...@apache.org>
Committed: Wed Jan 4 14:34:08 2012 -0700

----------------------------------------------------------------------
 .../deltaspike/integration/core/EmptyTest.java     |   36 +++++++++++++++
 1 files changed, 36 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/blob/4122be45/deltaspike/core/integration-test/src/test/java/org/apache/deltaspike/integration/core/EmptyTest.java
----------------------------------------------------------------------
diff --git a/deltaspike/core/integration-test/src/test/java/org/apache/deltaspike/integration/core/EmptyTest.java b/deltaspike/core/integration-test/src/test/java/org/apache/deltaspike/integration/core/EmptyTest.java
new file mode 100644
index 0000000..65a29c7
--- /dev/null
+++ b/deltaspike/core/integration-test/src/test/java/org/apache/deltaspike/integration/core/EmptyTest.java
@@ -0,0 +1,36 @@
+/*
+ * 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
+ * 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.apache.deltaspike.integration.core;
+
+import org.junit.Test;
+
+import static org.junit.Assert.assertTrue;
+
+/**
+ * @author <a href="http://community.jboss.org/people/LightGuard">Jason Porter</a>
+ */
+public class EmptyTest
+{
+    @Test
+    public void empty()
+    {
+        assertTrue(true);
+    }
+}