This commit is contained in:
8
tests/data/includes/base_class.aer
Normal file
8
tests/data/includes/base_class.aer
Normal file
@@ -0,0 +1,8 @@
|
||||
class BaseClass {
|
||||
|
||||
protected void run() {
|
||||
printf('Test launched...');
|
||||
include 'data/includes/include_test.aer';
|
||||
}
|
||||
|
||||
}
|
1
tests/data/includes/include_test.aer
Normal file
1
tests/data/includes/include_test.aer
Normal file
@@ -0,0 +1 @@
|
||||
printf("OK!\n");
|
3
tests/data/includes/test_class.aer
Normal file
3
tests/data/includes/test_class.aer
Normal file
@@ -0,0 +1,3 @@
|
||||
class Test {
|
||||
string $test = 'This is a test';
|
||||
}
|
Reference in New Issue
Block a user