toBeInstanceOf() Expectation handle Java classes
Description
is blocked by
Gliffy Diagrams
Activity

Luis MajanoNovember 26, 2013 at 5:29 PM
Yea, I think a separate method is best. Go for it if you like just tag tis
for the 1.1.0 RC tag
–
Luis F. Majano
CEO
Ortus Solutions, Corp
www.ortussolutions.com
ColdBox Platform: http://www.coldbox.org
Linked In: http://www.linkedin.com/pub/3/731/483
Blog: http://www.luismajano.com
IECFUG Manager: http://www.iecfug.com
Social: twitter.com/lmajano facebook.com/lmajano

Brad WoodNovember 26, 2013 at 2:59 AM
Perhaps we need to create a toBeJavaInstanceOf() expectation that will be
guaranteed to work on Java classes since the toBeInstanceOf() expectation
is spotty in when it will work.
Thanks!
~Brad
ColdBox Platform Evangelist
*Ortus Solutions, Corp *
E-mail: brad@coldbox.org
ColdBox Platform: http://www.coldbox.org
Blog: http://www.codersrevolution.com
On Sat, Nov 23, 2013 at 11:01 AM, Luis Majano (JIRA) <
Luis MajanoNovember 23, 2013 at 5:00 PM
I don't think there is an is java function
–
Luis Majano
CEO
Ortus Solutions, Corp
www.ortussolutions.com
ColdBox Platform: http://www.coldbox.org
ContentBox Platform: http://www.gocontentbox.org
Linked In: http://www.linkedin.com/pub/3/731/483
Social: twitter.com/ortussolutions | twitter.com/coldbox |
twitter.com/lmajano | twitter.com/gocontentbox

Brad WoodNovember 23, 2013 at 4:09 AM
Well, if you could simply detect that it's a Java class, then treat them all the same way.
Luis MajanoNovember 22, 2013 at 11:04 PM
For that, maybe a custom expectations would be the way to go.
This code fails on a Java object that comes back from the Couchbase API:
ColdFusion's isInstanceOf() method appears to only work for Java objects that are created with createObject or CFObject per the docs here:
http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=functions_in-k_17.html
See if there is a way to detect Java objects and use .getClass().getName() to determine their type.
Note, that won't cover Java inheritance.