Passed
Pull Request — master (#195)
by Jonathan
03:35 queued 24s
created

Lib_Test_Partner_GetServerTimestampTest   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 2
eloc 5
c 1
b 0
f 0
dl 0
loc 12
rs 10
1
<?php
2
class Lib_Test_Partner_GetServerTimestampTest extends Lib_Test_TestAbstractPartner
3
{
4
	public function getTestName()
5
	{
6
		return 'GetServerTimestamp';
7
	}
8
	
9
	protected function _run()
10
	{
11
		echo "***** Get Server Timestamp *****\n";
12
		$response = $this->_mySforceConnection->getServerTimestamp();
13
		print_r($response);
14
	}
15
}