Verify that function signatures of t() and st() are equal.
function testFunctionSignatures() {
$reflector_t = new ReflectionFunction('t');
$reflector_st = new ReflectionFunction('st');
$this
->assertEqual($reflector_t
->getParameters(), $reflector_st
->getParameters(), t('Function signatures of t() and st() are equal.'));
}