XmlSchemaTests.cs 419 B

1234567891011121314151617181920212223242526
  1. //
  2. // System.Xml.XmlSchema.cs
  3. //
  4. // Author:
  5. // Atsushi Enomoto <[email protected]>
  6. //
  7. // (C) 2002 Atsushi Enomoto
  8. //
  9. using System;
  10. using System.Xml;
  11. using System.Xml.Schema;
  12. using NUnit.Framework;
  13. namespace MonoTests.System.Xml
  14. {
  15. [TestFixture]
  16. public class XmlSchemaTests
  17. {
  18. [Test]
  19. public void TestRead ()
  20. {
  21. XmlSchema som = XmlSchema.Read (new XmlTextReader ("XmlFiles/xsd/xml.xsd"), null);
  22. }
  23. }
  24. }