aboutsummaryrefslogtreecommitdiffstats
path: root/src/Test.java
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-09-05 03:22:26 +0200
committerMattias Andrée <maandree@operamail.com>2014-09-05 03:22:26 +0200
commit4aed814123b2582d3ccdc80c1893da4f72849cb9 (patch)
tree61df832dc1264ef3e791990f713c11a5aca98c56 /src/Test.java
parentm (diff)
downloadjlibgamma-4aed814123b2582d3ccdc80c1893da4f72849cb9.tar.gz
jlibgamma-4aed814123b2582d3ccdc80c1893da4f72849cb9.tar.bz2
jlibgamma-4aed814123b2582d3ccdc80c1893da4f72849cb9.tar.xz
begin on test
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src/Test.java')
-rw-r--r--src/Test.java37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/Test.java b/src/Test.java
new file mode 100644
index 0000000..6002543
--- /dev/null
+++ b/src/Test.java
@@ -0,0 +1,37 @@
+/**
+ * jlibgamma — Display server abstraction layer for gamma ramp and Java
+ * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ *
+ * This library is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this library. If not, see <http://www.gnu.org/licenses/>.
+ */
+import libgamma.*;
+
+
+/**
+ * jlibgamma test class.
+ */
+public class Test
+{
+ /**
+ * Main test function.
+ *
+ * @param args Command line arguments, excluding $0.
+ */
+ public static void main(String[] args)
+ {
+ System.out.println(AdjustmentMethod.X_RANDR.is_available());
+ }
+
+}
+