public function test_strip_inputs_should_be_case_insensitive()
 {
     $text = 'foo <INPUT TYPE="text" />  bar';
     $expected = 'foo ___ bar';
     $pf = new \WeBWorK\Server\Util\ProblemFormatter();
     $this->assertSame($expected, $pf->strip_inputs($text));
 }