Commit 69eed4ca authored by MBoretto's avatar MBoretto

remove conflics test

parent be36bbbc
...@@ -103,19 +103,6 @@ class FileTest extends TestCase ...@@ -103,19 +103,6 @@ class FileTest extends TestCase
$this->assertEquals($this->data['file_path'], $path); $this->assertEquals($this->data['file_path'], $path);
} }
/**
*
* Testing without file id
*
* @expectedException Longman\TelegramBot\Exception\TelegramException
*
*/
public function testCreateInstanceWithoutFileId()
{
unset($this->data['file_id']);
new File($this->data);
}
/** /**
* *
* Testing getFileSize without data * Testing getFileSize without data
......
...@@ -89,30 +89,4 @@ class LocationTest extends TestCase ...@@ -89,30 +89,4 @@ class LocationTest extends TestCase
$this->assertInternalType('float', $lat); $this->assertInternalType('float', $lat);
$this->assertEquals($this->coordinates['latitude'], $lat); $this->assertEquals($this->coordinates['latitude'], $lat);
} }
/**
*
* Testing without longitude
*
* @expectedException Longman\TelegramBot\Exception\TelegramException
*
*/
public function testCreateInstanceWithoutLongitude()
{
unset($this->coordinates['longitude']);
new Location($this->coordinates);
}
/**
*
* Testing without latitude
*
* @expectedException Longman\TelegramBot\Exception\TelegramException
*
*/
public function testCreateInstanceWithoutLatitude()
{
unset($this->coordinates['latitude']);
new Location($this->coordinates);
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment