Index: build.xml
===================================================================
--- build.xml (revision 891413)
+++ build.xml (working copy)
@@ -134,7 +134,8 @@
+ junit.classpath="tag.junit.classpath"
+ junit.output.dir="${junit.output.dir.tag}" />
Index: common-build.xml
===================================================================
--- common-build.xml (revision 891413)
+++ common-build.xml (working copy)
@@ -95,7 +95,9 @@
+
+
@@ -507,16 +509,22 @@
+
+
+
+
+
+
@@ -532,6 +540,17 @@
+
+
+
+
+
+
+
+
+
Index: src/test/org/apache/lucene/TestAssertions.java
===================================================================
--- src/test/org/apache/lucene/TestAssertions.java (revision 0)
+++ src/test/org/apache/lucene/TestAssertions.java (revision 0)
@@ -0,0 +1,32 @@
+package org.apache.lucene;
+
+/**
+ * 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.
+ */
+
+import org.apache.lucene.util.LuceneTestCase;
+
+public class TestAssertions extends LuceneTestCase {
+
+ public void test() {
+ try {
+ assert Boolean.FALSE.booleanValue();
+ fail("assertions are not enabled!");
+ } catch (AssertionError e) {
+ }
+ }
+
+}
Property changes on: src\test\org\apache\lucene\TestAssertions.java
___________________________________________________________________
Added: svn:keywords
+ Date Author Id Revision HeadURL
Added: svn:eol-style
+ native