You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Mods-for-HESK-Netsyms/api/Tests/BusinessLogic/Attachments/AttachmentHandlerTest.php

18 lines
314 B
PHP

<?php
namespace BusinessLogic\Attachments;
use PHPUnit\Framework\TestCase;
class AttachmentHandlerTest extends TestCase {
/* @var $attachmentHandler AttachmentHandler */
private $attachmentHandler;
protected function setUp() {
$this->attachmentHandler = new AttachmentHandler();
}
}