Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/Newtonsoft.Json.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJamesNK <james@newtonking.com>2009-01-02 08:29:31 +0300
committerJamesNK <james@newtonking.com>2009-01-02 08:29:31 +0300
commit0319263756212f4a1875cda6534b9b8e1fb53188 (patch)
tree5b0e25e2fec10a9137390756c70510fe43174e79 /Src/Newtonsoft.Json.Tests/TestObjects/Store.cs
parentf95868233e687e5f45665904c9accf89e71ee92f (diff)
-Added JSON Schema implementation
-Move test serialization objects to TestObjects namespace -Fixed JsonConvert to always write a floating point number with a decimal place -Changed Type values to serialize and deserialize to type name string -Fixed JsonWriter to allow objects and arrays to be written in a constructor -Added JsonContainerAttribute with Id, Title and Description members. JsonObject and JsonArray inherit from this attribute -Added JsonArrayAttribute. Has flag to control whether array can contain null items. -Added IsRequired to JsonProperty -Replaced protected method GetSerializableMembers with GetMemberMappings on JsonSerializer -Fixed QuoteChar not getting set when parsing property name -Added Load(JsonReader) to JProperty, JConstructor -Fixed error when populating JProperty with content from collection -Added the ability for JsonTokenWriter to write individual values as well as arrays and objects -Added CreateReader to JToken -Added FromObject to JToken -Added ReadFrom to JToken
Diffstat (limited to 'Src/Newtonsoft.Json.Tests/TestObjects/Store.cs')
-rw-r--r--Src/Newtonsoft.Json.Tests/TestObjects/Store.cs62
1 files changed, 62 insertions, 0 deletions
diff --git a/Src/Newtonsoft.Json.Tests/TestObjects/Store.cs b/Src/Newtonsoft.Json.Tests/TestObjects/Store.cs
new file mode 100644
index 0000000..faffddb
--- /dev/null
+++ b/Src/Newtonsoft.Json.Tests/TestObjects/Store.cs
@@ -0,0 +1,62 @@
+#region License
+// Copyright (c) 2007 James Newton-King
+//
+// Permission is hereby granted, free of charge, to any person
+// obtaining a copy of this software and associated documentation
+// files (the "Software"), to deal in the Software without
+// restriction, including without limitation the rights to use,
+// copy, modify, merge, publish, distribute, sublicense, and/or sell
+// copies of the Software, and to permit persons to whom the
+// Software is furnished to do so, subject to the following
+// conditions:
+//
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+// OTHER DEALINGS IN THE SOFTWARE.
+#endregion
+
+using System;
+using System.Collections.Generic;
+
+namespace Newtonsoft.Json.Tests.TestObjects
+{
+ public class Store
+ {
+ public StoreColor Color = StoreColor.Yellow;
+ public DateTimeOffset Establised = new DateTimeOffset(2010, 1, 22, 1, 1, 1, TimeSpan.Zero);
+ public double Width = 1.1;
+ public int Employees = 999;
+ public int[] RoomsPerFloor = { 1, 2, 3, 4, 5, 6, 7, 8, 9 };
+ public bool Open = false;
+ public char Symbol = '@';
+ public List<string> Mottos = new List<string>();
+ public decimal Cost = 100980.1M;
+ public string Escape = "\r\n\t\f\b?{\\r\\n\"\'";
+ public List<Product> product = new List<Product>();
+
+ public Store()
+ {
+ Mottos.Add("Hello World");
+ Mottos.Add("öäüÖÄÜ\\'{new Date(12345);}[222]_µ@²³~");
+ Mottos.Add(null);
+ Mottos.Add(" ");
+
+ Product rocket = new Product();
+ rocket.Name = "Rocket";
+ rocket.Expiry = new DateTime(2000, 2, 2, 23, 1, 30, DateTimeKind.Utc);
+ Product alien = new Product();
+ alien.Name = "Alien";
+
+ product.Add(rocket);
+ product.Add(alien);
+ }
+ }
+} \ No newline at end of file