From: Alexis Laferrière Date: Thu, 12 Jun 2014 13:14:12 +0000 (-0400) Subject: tests: add a test for the extra_java_files phase X-Git-Tag: v0.6.6~27^2 X-Git-Url: http://nitlanguage.org tests: add a test for the extra_java_files phase Signed-off-by: Alexis Laferrière --- diff --git a/tests/sav/test_ffi_java_annot_files.res b/tests/sav/test_ffi_java_annot_files.res new file mode 100644 index 0000000..cbbeae1 --- /dev/null +++ b/tests/sav/test_ffi_java_annot_files.res @@ -0,0 +1,4 @@ +-1 +1 +-1 +1 diff --git a/tests/test_ffi_java_annot_files.nit b/tests/test_ffi_java_annot_files.nit new file mode 100644 index 0000000..c57135a --- /dev/null +++ b/tests/test_ffi_java_annot_files.nit @@ -0,0 +1,35 @@ +# This file is part of NIT ( http://www.nitlanguage.org ). +# +# Copyright 2014 Alexis Laferrière +# +# Licensed 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. + +module test_ffi_java_annot_files is + extra_java_files("test_ffi_java_annot_files_a.java") +end + +import java + +fun foo in "Java" `{ + test_ffi_java_annot_files_a zero = new test_ffi_java_annot_files_a(0); + test_ffi_java_annot_files_a one = new test_ffi_java_annot_files_a(1); + test_ffi_java_annot_files_a ten = new test_ffi_java_annot_files_a(10); + test_ffi_java_annot_files_a neg = new test_ffi_java_annot_files_a(-1); + + System.out.println(zero.compareTo(one)); + System.out.println(one.compareTo(zero)); + System.out.println(zero.compareTo(ten)); + System.out.println(zero.compareTo(neg)); +`} + +foo diff --git a/tests/test_ffi_java_annot_files_a.java b/tests/test_ffi_java_annot_files_a.java new file mode 100644 index 0000000..2a7fdf5 --- /dev/null +++ b/tests/test_ffi_java_annot_files_a.java @@ -0,0 +1,30 @@ +// This file is part of NIT ( http://www.nitlanguage.org ). +// +// Copyright 2014 Alexis Laferriere +// +// Licensed 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 java.lang.Comparable; + +public class test_ffi_java_annot_files_a implements Comparable { + Integer val; + + test_ffi_java_annot_files_a(int val) { + this.val = new Integer(val); + } + + @Override + public int compareTo(test_ffi_java_annot_files_a other) { + return val.compareTo(other.val); + } +}