From 64627852747970aed661ac390a13776f521bef5e Mon Sep 17 00:00:00 2001 From: michaeloffner Date: Mon, 15 Jul 2024 13:14:01 +0200 Subject: [PATCH] add additional test case --- tests/Base.cfc | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 tests/Base.cfc diff --git a/tests/Base.cfc b/tests/Base.cfc new file mode 100644 index 0000000..de494ef --- /dev/null +++ b/tests/Base.cfc @@ -0,0 +1,14 @@ +component extends="org.lucee.cfml.test.LuceeTestCase" labels="redis" { + + + function run( testResults , testBox ) { + describe( "Simple Tests", function() { + + it( title='simply load RedisCommand class', body=function( currentSpec ) { + var RedisCommand=createObject("java","lucee.extension.io.cache.redis.udf.RedisCommand").init(); + }); + + + }); + } +} \ No newline at end of file