Skip to content
This repository was archived by the owner on Apr 4, 2019. It is now read-only.

Commit 516c694

Browse files
author
Tim Whitlock
committed
last commit before legacy branch
1 parent f5bc3dd commit 516c694

File tree

3 files changed

+28
-4
lines changed

3 files changed

+28
-4
lines changed

examples/raw-bytes.php

Lines changed: 0 additions & 3 deletions
This file was deleted.

examples/u-function.php

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
<?php
2+
/**
3+
* Print tick mark using the u() syntax
4+
*/
5+
6+
chdir(__DIR__);
27
require('../php-unicode.php');
8+
39
header('Content-Type: text/html; charset=utf8', true );
4-
echo u('\u2714');
10+
11+
echo u('\u2714'),"\n";

phpunit.xml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phpunit bootstrap="./test/bootstrap.php"
3+
colors="true"
4+
strict="true"
5+
verbose="true"
6+
processIsolation="false"
7+
stopOnFailure="false"
8+
syntaxCheck="false"
9+
convertErrorsToExceptions="true"
10+
convertNoticesToExceptions="true"
11+
convertWarningsToExceptions="true"
12+
>
13+
14+
<testsuites>
15+
<testsuite name="All tests">
16+
<directory>./test/Tests</directory>
17+
</testsuite>
18+
</testsuites>
19+
20+
</phpunit>

0 commit comments

Comments
 (0)