ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
RunTimeTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
23 class RunTimeTest extends TestCase
24 {
25  private function markTestSkippedWhenNoRunningOnPhp(): void
26  {
27  if (!defined('HHVM_VERSION')) {
28  return;
29  }
30 
31  $this->markTestSkipped('Cannot run on HHVM');
32  }
33 
35  {
37 
38  $this->assertSame(PHP_VERSION, ilRuntime::getInstance()->getVersion());
39  }
40 
41  public function testGetNameReturnsPhpWhenRunningOnPhp(): void
42  {
44 
45  $this->assertSame('PHP', ilRuntime::getInstance()->getName());
46  }
47 
48  public function testBinaryCanBeRetrieved(): void
49  {
50  $this->assertNotEmpty(ilRuntime::getInstance()->getBinary());
51  }
52 }
testGetNameReturnsPhpWhenRunningOnPhp()
Definition: RunTimeTest.php:41
testGetVersionReturnsPhpVersionWhenRunningPhp()
Definition: RunTimeTest.php:34
static getInstance()
markTestSkippedWhenNoRunningOnPhp()
Definition: RunTimeTest.php:25
testBinaryCanBeRetrieved()
Definition: RunTimeTest.php:48