Test Failed
Push — 135-map-multiple-wordpress-obj... ( 3634c2...bb35fb )
by Jonathan
12:00
created

getTestName()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
class Lib_Test_Enterprise_DescribeSObjectTest extends Lib_Test_TestAbstractEnterprise
3
{
4
	public function getTestName()
0 ignored issues
show
Coding Style introduced by
The function name getTestName is in camel caps, but expected get_test_name instead as per the coding standard.
Loading history...
5
	{
6
		return 'DescribeSObject';
7
	}
8
	
9
	protected function _run()
10
	{
11
		print_r($this->_mySforceConnection->describeSObject('Task'));
0 ignored issues
show
introduced by
The use of function print_r() is discouraged
Loading history...
12
	}
13
}