Skip to content
This repository was archived by the owner on Apr 3, 2023. It is now read-only.

Commit be828cd

Browse files
Vlastimil Zemanforejtv
authored andcommitted
Add tests for java functionality.
1 parent a601b47 commit be828cd

File tree

3 files changed

+36
-0
lines changed

3 files changed

+36
-0
lines changed

test/java/build.xml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<project name="Regression test" default="dist" basedir=".">
2+
<description>
3+
Simple build file
4+
</description>
5+
<!-- set global properties for this build -->
6+
<property name="src" location="src"/>
7+
<property name="build" location="build"/>
8+
9+
<target name="init">
10+
<mkdir dir="${build}"/>
11+
</target>
12+
13+
<target name="compile" depends="init"
14+
description="compile the source">
15+
<javac srcdir="${src}" destdir="${build}"/>
16+
</target>
17+
</project>

test/java/pom.xml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
6+
<groupId>com.diffblue.regression</groupId>
7+
<artifactId>diffblue-regression-test</artifactId>
8+
<version>1</version>
9+
<packaging>jar</packaging>
10+
11+
<name>Diffblue Regression Test</name>
12+
13+
</project>
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
package com.diffblue.regression;
2+
3+
public class My {
4+
public My(int i) {
5+
}
6+
}

0 commit comments

Comments
 (0)