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
NestingPOCOTests.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="NestingPOCOTests.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 NestingPOCO</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 NestingPOCOTests
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 = "Testy";
44 NestingPOCO poco = new NestingPOCO();
45 poco.SetValue("Testy");
46 NestingPOCO deserializedPOCO;
47
48 // Act
49 deserializedPOCO = SerializeThenDeserialiseNestingPOCO(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 NestingPOCO poco = new NestingPOCO();
64 poco.SetValue(null);
65 NestingPOCO deserializedPOCO;
66
67 // Act
68 deserializedPOCO = SerializeThenDeserialiseNestingPOCO(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 NestingPOCO SerializeThenDeserialiseNestingPOCO(NestingPOCO valueToSerialize)
81 {
82 var applicationContext = _testDIContext.CreateTestApplicationContext();
83
84 System.IO.MemoryStream serializationStream;
85 NestingPOCO 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 NestingPOCO;
94 }
95
96 return deserializedValue;
97 }
98
99 #endregion
100
101 }
102}
A class including a private nested class for which automatic serialization code is to be generated
Definition: NestingPOCO.cs:21
Tests of serialization of the NestingPOCO 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