blob: 11c09143642c798fa966339fe742b5c3d0c0d70a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
Feature: Unicode in source buffer
In order to use Vdebug with all character sets
As a user
I want to debug code that uses Unicode characters
# FIXME this is a known failure but we could not figure out the reason.
@broken
Scenario: Debug a PHP file containing Unicode characters
Given I have a file test.php containing
"""
<?php
$arr = array('中文' => '中文');
?>
"""
And I start the debugger with the PHP script test.php
When I step over
Then the watch window should show $arr
|