Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CompatTest.cs « System.Resources « Test « Managed.Windows.Forms « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 453d5ba6774b5db62849fcaee28749f3fa077abb (plain)
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
//
// CompatTest.cs: Compatibility unit tests for ResXResourceReader.
//
// Authors:
//     Robert Jordan <robertj@gmx.net>
//

using System;
using System.Collections;
using System.Drawing;
using System.IO;
using System.Resources;
using NUnit.Framework;

namespace MonoTests.System.Resources
{
        [TestFixture]
        public class CompatTest
        {
                class Helper
                {
                        public static void TestReader (string fileName)
                        {
                                ResXResourceReader r = new ResXResourceReader (fileName);
                                Hashtable h = new Hashtable();
                                foreach (DictionaryEntry e in r) {
                                        h.Add (e.Key, e.Value);
                                }
                                r.Close ();

                                Assert.AreEqual ("hola", (string) h["String"], fileName + "#1");
                                Assert.AreEqual ("hello", (string) h["String2"], fileName + "#2");
                                Assert.AreEqual (42, (int) h["Int"], fileName + "#3");
                                Assert.AreEqual (PlatformID.Win32NT, (PlatformID) h["Enum"], fileName + "#4");
                                Assert.AreEqual (43, ((Point) h["Convertible"]).X, fileName + "#5");
                                Assert.AreEqual (2, (byte) ((ArrayList) h["Serializable"])[1], fileName + "#6");
                                Assert.AreEqual (13, ((byte[]) h["ByteArray"])[1], fileName + "#7");
                                Assert.AreEqual (16, ((byte[]) h["ByteArray2"])[1], fileName + "#8");
                                Assert.AreEqual (1013, ((int[]) h["IntArray"])[1], fileName + "#9");
                                Assert.AreEqual ("world", ((string[]) h["StringArray"])[1], fileName + "#10");
                        }
                }

                [Test]
                public void TestReader ()
                {
                        Helper.TestReader ("Test/System.Resources/compat_1_1.resx");
                        Helper.TestReader ("Test/System.Resources/compat_2_0.resx");
                }
        }
}