Skip to content

Commit 69eed4c

Browse files
committed
remove conflics test
1 parent be36bbb commit 69eed4c

File tree

2 files changed

+0
-39
lines changed

2 files changed

+0
-39
lines changed

tests/unit/Entities/FileTest.php

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -103,19 +103,6 @@ public function testGetFilePath()
103103
$this->assertEquals($this->data['file_path'], $path);
104104
}
105105

106-
/**
107-
*
108-
* Testing without file id
109-
*
110-
* @expectedException Longman\TelegramBot\Exception\TelegramException
111-
*
112-
*/
113-
public function testCreateInstanceWithoutFileId()
114-
{
115-
unset($this->data['file_id']);
116-
new File($this->data);
117-
}
118-
119106
/**
120107
*
121108
* Testing getFileSize without data

tests/unit/Entities/LocationTest.php

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -89,30 +89,4 @@ public function testGetLatitude()
8989
$this->assertInternalType('float', $lat);
9090
$this->assertEquals($this->coordinates['latitude'], $lat);
9191
}
92-
93-
/**
94-
*
95-
* Testing without longitude
96-
*
97-
* @expectedException Longman\TelegramBot\Exception\TelegramException
98-
*
99-
*/
100-
public function testCreateInstanceWithoutLongitude()
101-
{
102-
unset($this->coordinates['longitude']);
103-
new Location($this->coordinates);
104-
}
105-
106-
/**
107-
*
108-
* Testing without latitude
109-
*
110-
* @expectedException Longman\TelegramBot\Exception\TelegramException
111-
*
112-
*/
113-
public function testCreateInstanceWithoutLatitude()
114-
{
115-
unset($this->coordinates['latitude']);
116-
new Location($this->coordinates);
117-
}
11892
}

0 commit comments

Comments
 (0)