view 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
line wrap: on
line source

<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE races[
  <!ELEMENT preferences (preferece*)> 
  <!ELEMENT preference (CDATA|preferenceArr)> 
  <!ELEMENT preferenceArr (CDATA)>
  <!ATTLIST preference id ID #REQUIRED>
  <!ATTLIST preference type CDATA #REQUIRED>
  <!ATTLIST preferenceArr id ID #REQUIRED>
]>
<preferences>
	<preference id="boolVal" type="System.Boolean">true</preference>
	<preference id="stringVal" type="System.String">some string here</preference>
	<preference id="byteVal" type="System.Byte">255</preference>
</preferences>