Exemplo n.º 1
0
        public void Instance_IsInitialized_CanBeSerialized()
        {
            var root = new AggregateInstance();

            var json = JsonSerializer.Serialize(root);

            // no exception is good test
        }
Exemplo n.º 2
0
        public void Instance_IsInitialized_CanBeDeserialized()
        {
            var root = new AggregateInstance();
            var json = JsonSerializer.Serialize(root);

            var result = JsonSerializer.Deserialize <AggregateInstance>(json);

            Assert.Equal(root.Id, result.Id);
            // Verifies that the lambda property can be serialized and deserialized correctly
            Assert.Equal(root.PartitionKey, result.PartitionKey);
        }