Learning ColdFusion 8: OnMissingMethod() Event Handler

<!--- Create a Test instance. --->
<cfset objTest = CreateObject( "component", "Test" ) />
 
<!---
	Call the missing method function directly. Since
	all of its arguments are required, we have to create
	fake paramters.
--->
<cfset objTest.OnMissingMethod(
	MissingMethodName = "Blam",
	MissingMethodArguments = StructNew()
	) />

For Cut-and-Paste