Typehinting test.
The build was successful. Details

This commit is contained in:
Rafal Kupiec 2019-04-06 17:01:28 +02:00
parent 1679420f4c
commit 67f40db553
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
2 changed files with 66 additions and 0 deletions

43
tests/type_hinting.aer Normal file
View File

@ -0,0 +1,43 @@
class Program {
private int $test = 7;
void testChar(char $value) {
var_dump($value);
var_dump(is_char($value));
}
void testFloat(float $value) {
var_dump($value);
var_dump(is_float($value));
}
void testObject(object $value) {
var_dump($value);
var_dump(is_object($value));
}
void testString(string $value) {
var_dump($value);
var_dump(is_string($value));
}
void testVoid(void $value) {
var_dump($value);
var_dump(is_void($value));
}
void main() {
object $objval;
void $voidval;
$this->testChar('c');
$this->testChar(NULL);
$this->testFloat(4);
$this->testFloat(56.3);
$this->testObject($objval);
$this->testObject($this);
$this->testString('sample text');
$this->testString(NULL);
$this->testVoid($voidval);
$this->testVoid(NULL);
}
}

23
tests/type_hinting.exp Normal file
View File

@ -0,0 +1,23 @@
char(c)
bool(TRUE)
char()
bool(TRUE)
float(4)
bool(TRUE)
float(56.3)
bool(TRUE)
object()
bool(TRUE)
object(Program) {
['test'] =>
int(7)
}
bool(TRUE)
string(11 'sample text')
bool(TRUE)
string(0 '')
bool(TRUE)
void(NULL)
bool(TRUE)
void(NULL)
bool(TRUE)