view API/Factories/Xml/WarFoundryXmlFactoryUtilTest.cs @ 38:feb77f3287ca

Re #152: Test and fix extensibility of current schemas * Add unit test for parsing extended document without XSD for namespace
author IBBoard <dev@ibboard.co.uk>
date Sat, 27 Feb 2010 15:03:51 +0000
parents
children d4f6e9ac981e
line wrap: on
line source

//  This file (WarFoundryXmlFactoryUtilTest.cs) is a part of the IBBoard.WarFoundry.API.Tests project and is copyright 2010 IBBoard
// 
//  // The file and the library/program it is in are licensed and distributed, without warranty, under the GNU Affero GPL license, either version 3 of the License or (at your option) any later version. Please see COPYING for more information and the full license.

using System;
using System.IO;
using NUnit.Framework;

namespace IBBoard.WarFoundry.API.Factories.Xml
{
	[TestFixture()]
	public class WarFoundryXmlFactoryUtilTest
	{
		[Test()]
		public void TestParsingExtendedDataFile()
		{
			WarFoundryXmlFactoryUtils.CreateXmlDocumentFromStream(new FileInfo("testdata/extended-data.racex").OpenRead());		
		}
	}
}