summaryrefslogtreecommitdiffstats
path: root/src/testlibrary.d
diff options
context:
space:
mode:
Diffstat (limited to 'src/testlibrary.d')
-rw-r--r--src/testlibrary.d9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/testlibrary.d b/src/testlibrary.d
new file mode 100644
index 0000000..744163b
--- /dev/null
+++ b/src/testlibrary.d
@@ -0,0 +1,9 @@
+module testlibrary;
+
+public static class HelloWorldFactory
+{
+ public static char[] getName()
+ {
+ return "Hello World";
+ }
+}