From ca9cb892810b0727762cc0dfd1477d69a9ea714f Mon Sep 17 00:00:00 2001 From: michaeloffner Date: Fri, 6 Dec 2024 21:58:50 +0100 Subject: [PATCH] LDEV-4132 - test case --- test/tickets/LDEV4132.cfc | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 test/tickets/LDEV4132.cfc diff --git a/test/tickets/LDEV4132.cfc b/test/tickets/LDEV4132.cfc new file mode 100644 index 0000000000..097ebb3d1b --- /dev/null +++ b/test/tickets/LDEV4132.cfc @@ -0,0 +1,12 @@ +component extends="org.lucee.cfml.test.LuceeTestCase" skip=true { + + function run( testResults, testBox ) { + describe( title = "Testcase for LDEV-4132", body = function() { + + it( title = "Checking listFirst() member function", body = function( currentSpec ) { + var normalPrio = createObject("java", "edu.umd.cs.findbugs.Priorities","findbugsAnnotations","3.0.1").NORMAL_PRIORITY; + expect(normalPrio).toBe(2); + }); + }); + } +}