diff --git a/test/classes/plugin/transformations/Text_Plain_Append_test.php b/test/classes/plugin/transformations/Text_Plain_Append_test.php new file mode 100644 index 0000000000..6a033ecddb --- /dev/null +++ b/test/classes/plugin/transformations/Text_Plain_Append_test.php @@ -0,0 +1,83 @@ +assertEquals( + $info, + Text_Plain_Append::getInfo() + ); + + } + + /** + * Test for getName + * + * @return void + * + * @group medium + */ + public function testGetName() + { + $this->assertEquals( + "Append", + Text_Plain_Append::getName() + ); + } + + /** + * Test for getMIMEType + * + * @return void + * + * @group medium + */ + public function testGetMIMEType() + { + $this->assertEquals( + "Text", + Text_Plain_Append::getMIMEType() + ); + } + + /** + * Test for getMIMESubtype + * + * @return void + * + * @group medium + */ + public function testGetMIMESubtype() + { + $this->assertEquals( + "Plain", + Text_Plain_Append::getMIMESubtype() + ); + } +}