aboutsummaryrefslogtreecommitdiff
path: root/csharp/ProtocolBuffers.Test
diff options
context:
space:
mode:
authorJon Skeet <skeet@pobox.com>2008-08-14 20:33:29 +0100
committerunknown <Jon@.(none)>2008-08-14 20:33:29 +0100
commitc26b43d8cd182cfb5e0317b79c90f1f3f89759ba (patch)
tree5aba580c0f4bee0c56b3e88b128d46ec1b5c2415 /csharp/ProtocolBuffers.Test
parent1dd0a61d09cb5274be83d61ca6eea69622097d3d (diff)
downloadprotobuf-c26b43d8cd182cfb5e0317b79c90f1f3f89759ba.tar.gz
protobuf-c26b43d8cd182cfb5e0317b79c90f1f3f89759ba.tar.bz2
protobuf-c26b43d8cd182cfb5e0317b79c90f1f3f89759ba.zip
Added copyright notices
committer: Jon Skeet <skeet@pobox.com>
Diffstat (limited to 'csharp/ProtocolBuffers.Test')
-rw-r--r--csharp/ProtocolBuffers.Test/ByteStringTest.cs17
-rw-r--r--csharp/ProtocolBuffers.Test/CodedInputStreamTest.cs21
-rw-r--r--csharp/ProtocolBuffers.Test/CodedOutputStreamTest.cs19
3 files changed, 49 insertions, 8 deletions
diff --git a/csharp/ProtocolBuffers.Test/ByteStringTest.cs b/csharp/ProtocolBuffers.Test/ByteStringTest.cs
index 5f701731..768d74fe 100644
--- a/csharp/ProtocolBuffers.Test/ByteStringTest.cs
+++ b/csharp/ProtocolBuffers.Test/ByteStringTest.cs
@@ -1,5 +1,18 @@
-using System;
-using System.Collections.Generic;
+// Protocol Buffers - Google's data interchange format
+// Copyright 2008 Google Inc.
+// http://code.google.com/p/protobuf/
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
using System.Text;
using NUnit.Framework;
diff --git a/csharp/ProtocolBuffers.Test/CodedInputStreamTest.cs b/csharp/ProtocolBuffers.Test/CodedInputStreamTest.cs
index 8fefd98f..8332140e 100644
--- a/csharp/ProtocolBuffers.Test/CodedInputStreamTest.cs
+++ b/csharp/ProtocolBuffers.Test/CodedInputStreamTest.cs
@@ -1,8 +1,21 @@
-using System;
-using System.Collections.Generic;
-using System.Text;
-using NUnit.Framework;
+// Protocol Buffers - Google's data interchange format
+// Copyright 2008 Google Inc.
+// http://code.google.com/p/protobuf/
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+using System;
using System.IO;
+using NUnit.Framework;
namespace Google.ProtocolBuffers {
[TestFixture]
diff --git a/csharp/ProtocolBuffers.Test/CodedOutputStreamTest.cs b/csharp/ProtocolBuffers.Test/CodedOutputStreamTest.cs
index c2042d9e..0e97f2fd 100644
--- a/csharp/ProtocolBuffers.Test/CodedOutputStreamTest.cs
+++ b/csharp/ProtocolBuffers.Test/CodedOutputStreamTest.cs
@@ -1,5 +1,20 @@
-using NUnit.Framework;
-using System.IO;
+using System.IO;
+// Protocol Buffers - Google's data interchange format
+// Copyright 2008 Google Inc.
+// http://code.google.com/p/protobuf/
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+using NUnit.Framework;
namespace Google.ProtocolBuffers {
[TestFixture]