aboutsummaryrefslogtreecommitdiff
path: root/csharp/src/ProtocolBuffers.Test/Compatibility/TestResources.cs
diff options
context:
space:
mode:
authorJan Tattermusch <jtattermusch@users.noreply.github.com>2015-04-17 14:15:52 -0700
committerJan Tattermusch <jtattermusch@users.noreply.github.com>2015-04-17 14:15:52 -0700
commit01c8c35ca3d3424a9473dd22ea2456933b3e8d36 (patch)
treede582cb9ef3e449f24015dec09f80e998806b26a /csharp/src/ProtocolBuffers.Test/Compatibility/TestResources.cs
parent813d6d652d8091e9365bfbd01efb5f2ee8bdfbce (diff)
parent1eab56aee8dddcb656db67d9fb87a8cc6a2ac112 (diff)
downloadprotobuf-01c8c35ca3d3424a9473dd22ea2456933b3e8d36.tar.gz
protobuf-01c8c35ca3d3424a9473dd22ea2456933b3e8d36.tar.bz2
protobuf-01c8c35ca3d3424a9473dd22ea2456933b3e8d36.zip
Merge pull request #2 from jtattermusch/csharp_protobuf_imported
Pulling protobuf-csharp-port into csharp/ directory
Diffstat (limited to 'csharp/src/ProtocolBuffers.Test/Compatibility/TestResources.cs')
-rw-r--r--csharp/src/ProtocolBuffers.Test/Compatibility/TestResources.cs42
1 files changed, 42 insertions, 0 deletions
diff --git a/csharp/src/ProtocolBuffers.Test/Compatibility/TestResources.cs b/csharp/src/ProtocolBuffers.Test/Compatibility/TestResources.cs
new file mode 100644
index 00000000..c3ce5883
--- /dev/null
+++ b/csharp/src/ProtocolBuffers.Test/Compatibility/TestResources.cs
@@ -0,0 +1,42 @@
+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;
+ }
+ }
+ }
+}