I could only get this to work by changing the first part of the array to $this instead of string with the class name, following the manual of is_callable (http://php.net/manual/de/function.is-callable.php), meaning:
$htmlForm->setSubmitCallback( array( 'SpecialTestForm', 'trySubmit' ) )
should be
$htmlForm->setSubmitCallback( array( $this, 'trySubmit' ) )