Code Issue
----------
A number is display in the Priority column in the cases lists instead of the
priority in text.
Solution
--------
Correct display of priority column in cases lists.
The text that describes the priority is display instead of the priority number.
The number is converted to the corresponding text with the help of the function
G::LoadTranslation("ID_PRIORITY_N");
35 lines
947 B
XML
35 lines
947 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit backupGlobals="false"
|
|
backupStaticAttributes="false"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
processIsolation="false"
|
|
stopOnFailure="false"
|
|
syntaxCheck="false"
|
|
bootstrap="tests/bootstrap.php"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="ProcessMaker Test Suite">
|
|
<directory>./tests/unit/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<!-- <filter>
|
|
<whitelist>
|
|
<directory>./</directory>
|
|
<exclude>
|
|
<directory>./gulliver</directory>
|
|
<directory>./workflow</directory>
|
|
<directory>./rbac</directory>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter> -->
|
|
|
|
<php>
|
|
<var name="SYS_SYS" value="herbert" />
|
|
</php>
|
|
</phpunit>
|