using System; using System.Collections.Generic; using System.IO; using System.Text; using Microsoft.VisualStudio.TestTools.UnitTesting; namespace Google.ProtocolBuffers.Compatibility { static class TestResources { public static byte[] google_message1 { get { Stream resource = typeof(TestResources).Assembly.GetManifestResourceStream( typeof(TestResources).Namespace + ".google_message1.dat"); Assert.IsNotNull(resource, "Unable to the locate resource: google_message1"); byte[] bytes = new byte[resource.Length]; int amtRead = resource.Read(bytes, 0, bytes.Length); Assert.AreEqual(bytes.Length, amtRead); return bytes; } } public static byte[] google_message2 { get { Stream resource = typeof(TestResources).Assembly.GetManifestResourceStream( typeof(TestResources).Namespace + ".google_message2.dat"); Assert.IsNotNull(resource, "Unable to the locate resource: google_message2"); byte[] bytes = new byte[resource.Length]; int amtRead = resource.Read(bytes, 0, bytes.Length); Assert.AreEqual(bytes.Length, amtRead); return bytes; } } } }