|
@@ -1,3 +1,4 @@
|
|
|
|
+#region Copyright notice and license
|
|
// Protocol Buffers - Google's data interchange format
|
|
// Protocol Buffers - Google's data interchange format
|
|
// Copyright 2008 Google Inc. All rights reserved.
|
|
// Copyright 2008 Google Inc. All rights reserved.
|
|
// http://github.com/jskeet/dotnet-protobufs/
|
|
// http://github.com/jskeet/dotnet-protobufs/
|
|
@@ -29,14 +30,16 @@
|
|
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
+#endregion
|
|
|
|
+
|
|
using System;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.Generic;
|
|
using System.Globalization;
|
|
using System.Globalization;
|
|
using System.IO;
|
|
using System.IO;
|
|
using System.Text;
|
|
using System.Text;
|
|
|
|
+using System.Threading;
|
|
using Google.ProtocolBuffers.TestProtos;
|
|
using Google.ProtocolBuffers.TestProtos;
|
|
using NUnit.Framework;
|
|
using NUnit.Framework;
|
|
-using System.Threading;
|
|
|
|
|
|
|
|
namespace Google.ProtocolBuffers {
|
|
namespace Google.ProtocolBuffers {
|
|
internal static class TestUtil {
|
|
internal static class TestUtil {
|