PHP Classes

File: tests/ExceptionTest.php

Recommend this page to a friend!
  Classes of Martin Pircher   Skylable SX PHP Client   tests/ExceptionTest.php   Download  
File: tests/ExceptionTest.php
Role: Unit test script
Content type: text/plain
Description: unit test
Class: Skylable SX PHP Client
Store and retrieve files in Skylable cloud cluster
Author: By
Last change:
Date: 9 years ago
Size: 614 bytes
 

Contents

Class file image Download
<?php
/**
 * Skylable SX PHP Client
 *
 * @package skylablesx
 * @author Martin Pircher <mplx+coding@donotreply.at>
 * @copyright Copyright (c) 2014-2015, Martin Pircher
 * @license http://opensource.org/licenses/BSD-3-Clause BSD-3-Clause
 **/

namespace mplx\skylablesx\Tests;

use
mplx\skylablesx\SxException;

class
ExceptionTest extends \PHPUnit_Framework_TestCase
{
   
/**
     * @expectedException \mplx\skylablesx\SxException
     * @expectedExceptionMessage mplx
     */
   
public function testException()
    {
        throw new
SxException('mplx', __FILE__, __LINE__, 1);
    }
}