CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
NestingPOCO2Tests.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="NestingPOCO2Tests.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Tests of serialization behaviour on the AutoSerializable class NestingPOCO2</summary>
7//-----------------------------------------------------------------------
8using System;
9using System.Collections.Generic;
10using System.Text;
12using Microsoft.VisualStudio.TestTools.UnitTesting;
16using Csla.TestHelpers;
17
19{
20
24 [TestClass]
25 public class NestingPOCO2Tests
26 {
27 private static TestDIContext _testDIContext;
28
30 public static void ClassInitialize(TestContext testContext)
31 {
32 _testDIContext = TestDIContextFactory.CreateDefaultContext();
33 }
34
35 #region Serialize then Deserialize
36
37 [TestMethod]
39 {
40
41 // Arrange
42 string actual;
43 string expected = "Testy2";
44 NestingPOCO2 poco = new NestingPOCO2();
45 poco.SetValue("Testy2");
46 NestingPOCO2 deserializedPOCO;
47
48 // Act
49 deserializedPOCO = SerializeThenDeserialiseNestingPOCO2(poco);
50 actual = deserializedPOCO.GetValue();
51
52 // Assert
53 Assert.AreEqual(expected, actual);
54
55 }
56
57 [TestMethod]
59 {
60
61 // Arrange
62 string actual;
63 NestingPOCO2 poco = new NestingPOCO2();
64 poco.SetValue(null);
65 NestingPOCO2 deserializedPOCO;
66
67 // Act
68 deserializedPOCO = SerializeThenDeserialiseNestingPOCO2(poco);
69 actual = deserializedPOCO.GetValue();
70
71 // Assert
72 Assert.IsNull(actual);
73
74 }
75
76 #endregion
77
78 #region Private Helper Methods
79
80 private NestingPOCO2 SerializeThenDeserialiseNestingPOCO2(NestingPOCO2 valueToSerialize)
81 {
82 var applicationContext = _testDIContext.CreateTestApplicationContext();
83
84 System.IO.MemoryStream serializationStream;
85 NestingPOCO2 deserializedValue;
86 MobileFormatter formatter = new MobileFormatter(applicationContext);
87
88 // Act
89 using (serializationStream = new System.IO.MemoryStream())
90 {
91 formatter.Serialize(serializationStream, valueToSerialize);
92 serializationStream.Seek(0, System.IO.SeekOrigin.Begin);
93 deserializedValue = formatter.Deserialize(serializationStream) as NestingPOCO2;
94 }
95
96 return deserializedValue;
97 }
98
99 #endregion
100
101 }
102}
A second class including a private nested class for which automatic serialization code is to be gener...
Definition: NestingPOCO2.cs:23
Tests of serialization of the NestingPOCO2 class
static void ClassInitialize(TestContext testContext)
Serializes and deserializes objects at the field level.
object Deserialize(Stream serializationStream)
Deserialize an object from XML.
void Serialize(Stream serializationStream, object graph)
Serialize an object graph into XML.
Type to carry context information for DI in unit tests