We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00eef7e commit c09181aCopy full SHA for c09181a
source/test/general/ClassLoading.cfc
@@ -0,0 +1,10 @@
1
+component extends="org.lucee.cfml.test.LuceeTestCase" labels="ec2" {
2
+ function run( testResults , testBox ) {
3
+ describe( title="test if i can load an instance of a class",body=function() {
4
+ it(title="loading instance", skip=isNotSupported(), body = function( currentSpec ) {
5
+ var obj=createObject("java","org.lucee.extension.aws.ec2.function.EC2DescribeInstances");
6
+ getMetaData(obj)
7
+ });
8
9
+ }
10
+}
0 commit comments