| using System.Collections.Generic;
|
| using Microsoft.VisualStudio.TestTools.UnitTesting;
|
| namespace Google.ProtocolBuffers.Compatibility
|
| static class TestResources
|
| public static byte[] google_message1
|
| 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);
|
| public static byte[] google_message2
|
| 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);
|