aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/sabre/dav/tests/Sabre/DAV/Property/ResponseListTest.php
blob: d13066b80f1949fcd42dc8e45941e3994f028dae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

namespace Sabre\DAV\Property;

class ResponseListTest extends \PHPUnit_Framework_TestCase {

    /**
     * This was the only part not yet covered by other tests, so I'm going to
     * be lazy and (for now) only test this case.
     *
     * @expectedException InvalidArgumentException
     */
    public function testInvalidArg() {

        $response = new ResponseList(array(1,2));

    }

}