comparison PrefTestPref.xml @ 27:16c28954b559

* Start to unit test array utility methods before refactoring them to bring them up to date * Add some Preference-related tests that have been hanging around for a while no-open-ticket
author IBBoard <dev@ibboard.co.uk>
date Tue, 17 Aug 2010 20:02:13 +0000
parents
children
comparison
equal deleted inserted replaced
26:57b5d27e95fb 27:16c28954b559
1 <?xml version="1.0" encoding="ISO-8859-1"?>
2 <!DOCTYPE races[
3 <!ELEMENT preferences (preferece*)>
4 <!ELEMENT preference (CDATA|preferenceArr)>
5 <!ELEMENT preferenceArr (CDATA)>
6 <!ATTLIST preference id ID #REQUIRED>
7 <!ATTLIST preference type CDATA #REQUIRED>
8 <!ATTLIST preferenceArr id ID #REQUIRED>
9 ]>
10 <preferences>
11 <preference id="boolVal" type="System.Boolean">true</preference>
12 <preference id="stringVal" type="System.String">some string here</preference>
13 <preference id="byteVal" type="System.Byte">255</preference>
14 </preferences>