Added tests for '\'' and '"' literals.

This commit is contained in:
Ryszard Wiśniewski 2011-05-03 04:49:20 +02:00
parent 76d8aa0abc
commit 5c3c1b5be3
2 changed files with 6 additions and 2 deletions

View File

@ -6,4 +6,6 @@
<string name="test_string4">\?</string> <string name="test_string4">\?</string>
<string name="test_string5">\#ff123456</string> <string name="test_string5">\#ff123456</string>
<string name="test_string6">&amp;</string> <string name="test_string6">&amp;</string>
<string name="test_string7">\'</string>
<string name="test_string8">\&quot;</string>
</resources> </resources>

View File

@ -4,6 +4,8 @@
test2="Lorem ipsum" test2="Lorem ipsum"
test3="\@" test3="\@"
test4="\?" test4="\?"
test5="&amp;" test5="\#ff123456"
test6="\#" test6="&amp;"
test7="\'"
test8="\&quot;"
/> />