Skip to content

Commit

Permalink
LDEV-5181 - add test case
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeloffner committed Dec 6, 2024
1 parent c3a27aa commit 3d2e42b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions test/tickets/LDEV5181.cfc
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
component extends = "org.lucee.cfml.test.LuceeTestCase" skip="true" {

function run( testResults, testBox ){
describe( "LDEV5181", function(){

it( "test java.lang.System via createObject", function(){
stEnvVars = createObject("java", "java.lang.System").getenv();
});

it( "test java.lang.System natively", function(){
stEnvVars = java.lang.System::getenv();
});
} );
}

}

0 comments on commit 3d2e42b

Please sign in to comment.