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
PointTests.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="PointTests.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 struct Point</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 PointTests
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 int actual;
43 int expected = 21;
44 Point point = new Point() { X = 1, Y = 1 };
45 point.X = 21;
46 Point deserializedPoint;
47
48 // Act
49 deserializedPoint = SerializeThenDeserialisePoint(point);
50 actual = deserializedPoint.X;
51
52 // Assert
53 Assert.AreEqual(expected, actual);
54
55 }
56
57 [TestMethod]
59 {
60
61 // Arrange
62 int actual;
63 int expected = 17;
64 Point point = new Point() { X = 1, Y = 1 };
65 point.Y = 17;
66 Point deserializedPoint;
67
68 // Act
69 deserializedPoint = SerializeThenDeserialisePoint(point);
70 actual = deserializedPoint.Y;
71
72 // Assert
73 Assert.AreEqual(expected, actual);
74
75 }
76
77 #endregion
78
79 #region Private Helper Methods
80
81 private Point SerializeThenDeserialisePoint(Point valueToSerialize)
82 {
83 var applicationContext = _testDIContext.CreateTestApplicationContext();
84
85 System.IO.MemoryStream serializationStream;
86 Nullable<Point> deserializedValue;
87 MobileFormatter formatter = new MobileFormatter(applicationContext);
88
89 // Act
90 using (serializationStream = new System.IO.MemoryStream())
91 {
92 formatter.Serialize(serializationStream, valueToSerialize);
93 serializationStream.Seek(0, System.IO.SeekOrigin.Begin);
94 deserializedValue = formatter.Deserialize(serializationStream) as Nullable<Point>;
95 }
96
97 return deserializedValue.Value;
98 }
99
100 #endregion
101
102 }
103}
Tests of serialization of the Point struct
Definition: PointTests.cs:26
static void ClassInitialize(TestContext testContext)
Definition: PointTests.cs:30
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
Struct that can be used for testing serialization behaviour
Definition: Point.cs:21