Subversion Repository Public Repository

Nextrek

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php

use Intervention\Image\Point;

class PointTest extends PHPUnit_Framework_TestCase
{
    public function testConstructor()
    {
        $point = new Point;
        $this->assertInstanceOf('Intervention\Image\Point', $point);
        $this->assertEquals(0, $point->x);
        $this->assertEquals(0, $point->y);
    }

    public function testConstructorWithParameters()
    {
        $point = new Point(40, 50);
        $this->assertInstanceOf('Intervention\Image\Point', $point);
        $this->assertEquals(40, $point->x);
        $this->assertEquals(50, $point->y);
    }

    public function testSetX()
    {
        $point = new Point(0, 0);
        $point->setX(100);
        $this->assertEquals(100, $point->x);
        $this->assertEquals(0, $point->y);
    }

    public function testSetY()
    {
        $point = new Point(0, 0);
        $point->setY(100);
        $this->assertEquals(0, $point->x);
        $this->assertEquals(100, $point->y);
    }

    public function testSetPosition()
    {
        $point = new Point(0, 0);
        $point->setPosition(100, 200);
        $this->assertEquals(100, $point->x);
        $this->assertEquals(200, $point->y);
    }
}

Commits for Nextrek/Aiba_backup/vendor/intervention/image/tests/PointTest.php

Diff revisions: vs.
Revision Author Commited Message
1464 MOliva picture MOliva Tue 13 Oct, 2020 11:16:56 +0000