mirror of
https://github.com/moparisthebest/JdbcMapper
synced 2024-11-26 02:42:24 -05:00
44 lines
1.7 KiB
XML
44 lines
1.7 KiB
XML
<?xml version="1.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 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.
|
|
|
|
$Header:$
|
|
-->
|
|
|
|
<project name="Beehive/NetUI/TestRecorder" default="" basedir=".">
|
|
|
|
<import file="../../netui-imports.xml"/>
|
|
<import file="netui-test-imports.xml"/>
|
|
|
|
<property name="_testRecorder.base.dir" location="${build.dir}/testRecorder"/>
|
|
<property name="_server.maxWait" value="300"/>
|
|
|
|
<property name="_test.config.dir" location="${test.dir}/conf"/>
|
|
|
|
<property name="_log4j.config.verbose" location="${log4jconfig.verbose.junit}"/>
|
|
<property name="_log4j.config" location="${log4jconfig.junit}"/>
|
|
|
|
<import file="testRecorderCore.xml"/>
|
|
|
|
<target name="generate.report">
|
|
<junitreport todir="${report.dir}/">
|
|
<fileset dir="${report.dir}/">
|
|
<include name="TEST-*.xml"/>
|
|
</fileset>
|
|
<report format="noframes" todir="${report.dir}/html"/>
|
|
</junitreport>
|
|
</target>
|
|
</project> |