Subversion Repository Public Repository

WOX2

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
using System;
using NUnit.Framework;
using wox.serial.tests.objects;

/// <header>
/// <wox>
///     <version>1.0</version>
///     <author>Carlos R. Jaimez Gonzalez</author>
///     <author>Simon M. Lucas</author>
///     <site>http://woxserializer.sourceforge.net/</site>
/// </wox>
/// <wox>
///     <version>1.5</version>
///     <author>Steven M Lewis</author>
/// </wox>
/// <wox>
///     <version>2.0</version>
///     <author>George A Smith</author>
///     <svn>http://woxserializer.sourceforge.net/</svn>
///     <note>XML form for vs 2 is more compact and therefor incompatible with vs 1</note>
/// </wox>
/// </header>

namespace wox.serial.tests.mains
{
    /// <summary>
    /// This method is the entry point to write an object in XML.
    /// This class provides an example of how WOX handles object references.
    /// The main method uses the Easy class to serialize an array of Product objects
    /// to XML; and to de-serialize the XML to an array of Product objects back again.
    /// The array contains duplicate objects.
    /// </summary>

    public class TestReferences
    {
        public static void PrintProducts( Product[] products )
        {
            for ( int i = 0; i < products.Length; i++ )
            {
                Console.Out.WriteLine( "" + products[i] );
            }
        }

        /// <summary>
        /// This method shows how easy is to serialize and de-serialize C# objects to/from XML.
        /// </summary>
//        public static void Main( string[] pArgs )
        public static void WantTaBeMain(String[] pArgs)
        {
            var easy = new Easy();

            var p1 = new Product("Baked beans", 1.75, 250, true, 'B');
            var p2 = new Product( "Basmati Rice", 3.89, 750, true, 'R' );
            var p3 = new Product( "White bread", 1.06, 300, false, 'H' );
            var products = new[] {p1, p2, p1, p3, p3, p1};

            //print the array of objects
            PrintProducts( products );

            //object to standard XML
            String data = easy.Format(products);
            //object from the XML
            var newProducts = (Product[])easy.Parse(data);

            //print the new object - it is the same as before
            PrintProducts( newProducts );

            Assert.AreEqual(data, easy.Format(newProducts));
        }
    }
}

Commits for WOX2/trunk/CSharp/tests/wox/serial/tests/mains/TestReferences.cs

Diff revisions: vs.
Revision Author Commited Message
14 Diff Diff GeorgeS picture GeorgeS Fri 19 Feb, 2010 19:15:03 +0000
3 GeorgeS picture GeorgeS Thu 04 Feb, 2010 23:53:47 +0000