Skip to content

Commit

Permalink
LDEV-4132 - test case
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeloffner committed Dec 6, 2024
1 parent 3d2e42b commit ca9cb89
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions test/tickets/LDEV4132.cfc
Original file line number Diff line number Diff line change
@@ -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);
});
});
}
}

0 comments on commit ca9cb89

Please sign in to comment.