-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
26 lines (18 loc) · 760 Bytes
/
index.php
File metadata and controls
26 lines (18 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
include_once "./vendor/autoload.php";
//xdebug_break();
//phpinfo();
$testObj = new Purencool\TestData\TestData();
include_once "./examples/header.php";
echo '<h2>Example PHPUnit created searches</h2>';
echo '<hr/>';
echo '<p>The examples below show searches used in the PHPUnit tests.
If you want to debug one of the array examples, you can use "./vendor/bin/dephpugger".
The following link shows you how to install and start this tool
https://github.com/purencool/search#debugging.
</p>';
include_once "./examples/example_one.php";
include_once "./examples/example_two.php";
include_once "./examples/example_three.php";
include_once "./examples/example_four.php";
include_once "./examples/footer.php";