Skip to content

Commit 56ceb38

Browse files
committed
Keep debugging the workflow
1 parent e53b236 commit 56ceb38

File tree

2 files changed

+12
-14
lines changed

2 files changed

+12
-14
lines changed

tests/Integration/MariaDB/PDOTest.php

+8-9
Original file line numberDiff line numberDiff line change
@@ -53,35 +53,34 @@ public function testComplexActions(): void
5353

5454
$pointInside = Sfc::point(3, 5);
5555
$pointOutside = Sfc::point(10, 10);
56-
$this->assertTrue($this->selectVal(
56+
$this->assertEquals(true, $this->selectVal(
5757
$hull->contains($pointInside)
5858
));
59-
$this->assertTrue($this->selectVal(
59+
$this->assertEquals(true, $this->selectVal(
6060
$pointInside->within($hull)
6161
));
62-
$this->assertFalse($this->selectVal(
62+
$this->assertEquals(false, $this->selectVal(
6363
$hull->contains($pointOutside)
6464
));
65-
$this->assertFalse($this->selectVal(
65+
$this->assertEquals(false, $this->selectVal(
6666
$pointOutside->within($hull)
6767
));
6868

6969
$line = Sfc::lineFromText('LINESTRING(3 3,10 10)');
70-
$this->assertFalse($this->selectVal(
70+
$this->assertEquals(false, this->selectVal(
7171
$hull->contains($line)
7272
));
73-
$this->assertFalse($this->selectVal(
73+
$this->assertEquals(false, $this->selectVal(
7474
$line->within($hull)
7575
));
76-
$this->assertTrue($this->selectVal(
76+
$this->assertEquals(true, $this->selectVal(
7777
$hull->intersects($line)
7878
));
79-
$this->assertTrue($this->selectVal(
79+
$this->assertEquals(true, $this->selectVal(
8080
$line->intersects($hull)
8181
));
8282
}
8383

84-
8584
protected function selectVal(Expression $expression)
8685
{
8786
$query = $this->pdo->prepare("SELECT $expression as value");

tests/Integration/MySQL/PDOTest.php

+4-5
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,20 @@ protected function setUp(): void
1717
{
1818
parent::setUp();
1919

20-
/* $dsn = "mysql:host=127.0.0.1;port=3306;dbname=sfa;";
20+
$dsn = "mysql:host=127.0.0.1;port=3306;dbname=sfa;";
2121

2222
$this->pdo = new PDO($dsn, 'sfa', 'sfa', [
2323
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,
2424
PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC,
25-
]);*/
25+
]);
2626
}
2727

28-
public function testConstructorsXXXX(): void
28+
public function testConstructors(): void
2929
{
3030
$point = Sfc::point(23, 56, 4326);
3131

3232

33-
$this->assertEquals(123, (string) $point->x());
34-
33+
$this->assertEquals(23, Sfc::point(23, 56)->x());
3534

3635
$this->assertEquals(23, $this->selectVal($point->x()));
3736
$this->assertEquals(56, $this->selectVal($point->y()));

0 commit comments

Comments
 (0)