forked from Intervention/image
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPointTest.php
More file actions
79 lines (68 loc) · 2.05 KB
/
PointTest.php
File metadata and controls
79 lines (68 loc) · 2.05 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?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 testmoveX()
{
$point = new Point(50, 50);
$point->moveX(100);
$this->assertEquals(150, $point->x);
$this->assertEquals(50, $point->y);
}
public function testmoveY()
{
$point = new Point(50, 50);
$point->moveY(100);
$this->assertEquals(50, $point->x);
$this->assertEquals(150, $point->y);
}
public function testSetPosition()
{
$point = new Point(0, 0);
$point->setPosition(100, 200);
$this->assertEquals(100, $point->x);
$this->assertEquals(200, $point->y);
}
public function testRotate()
{
$point = new Point(30, 0);
$point->rotate(90, new Point(0, 0));
$this->assertEquals(0, $point->x);
$this->assertEquals(30, $point->y);
$point->rotate(90, new Point(0, 0));
$this->assertEquals(-30, $point->x);
$this->assertEquals(0, $point->y);
$point = new Point(300, 200);
$point->rotate(90, new Point(0, 0));
$this->assertEquals(-200, $point->x);
$this->assertEquals(300, $point->y);
}
}