@@ -14,8 +14,11 @@ namespace UnitTests.Helpers
14
14
[ TestClass ]
15
15
public class Test_StorageHelper
16
16
{
17
+ [ Obsolete ]
17
18
private readonly LocalObjectStorageHelper _localStorageHelperSystem = new LocalObjectStorageHelper ( new SystemSerializer ( ) ) ;
19
+ [ Obsolete ]
18
20
private readonly LocalObjectStorageHelper _localStorageHelperJsonCompat = new LocalObjectStorageHelper ( new JsonObjectSerializer ( ) ) ;
21
+ [ Obsolete ]
19
22
private readonly LocalObjectStorageHelper _localStorageHelperJsonNew = new LocalObjectStorageHelper ( new SystemTextJsonSerializer ( ) ) ;
20
23
21
24
/// <summary>
@@ -33,6 +36,7 @@ public void Test_StorageHelper_CheckNewtonsoftVersion()
33
36
34
37
[ TestCategory ( "Helpers" ) ]
35
38
[ TestMethod ]
39
+ [ Obsolete ]
36
40
public void Test_StorageHelper_LegacyIntTest ( )
37
41
{
38
42
string key = "LifeUniverseAndEverything" ;
@@ -53,6 +57,7 @@ public void Test_StorageHelper_LegacyIntTest()
53
57
/// </summary>
54
58
[ TestCategory ( "Helpers" ) ]
55
59
[ TestMethod ]
60
+ [ Obsolete ]
56
61
[ ExpectedException ( typeof ( NotSupportedException ) ) ]
57
62
public void Test_StorageHelper_LegacyDateTestFailure ( )
58
63
{
@@ -72,6 +77,7 @@ public void Test_StorageHelper_LegacyDateTestFailure()
72
77
/// </summary>
73
78
[ TestCategory ( "Helpers" ) ]
74
79
[ TestMethod ]
80
+ [ Obsolete ]
75
81
public void Test_StorageHelper_DateTestFailure ( )
76
82
{
77
83
Exception expectedException = null ;
@@ -92,6 +98,7 @@ public void Test_StorageHelper_DateTestFailure()
92
98
93
99
[ TestCategory ( "Helpers" ) ]
94
100
[ TestMethod ]
101
+ [ Obsolete ]
95
102
public void Test_StorageHelper_LegacyInternalClassTest ( )
96
103
{
97
104
string key = "Contact" ;
@@ -111,6 +118,7 @@ public void Test_StorageHelper_LegacyInternalClassTest()
111
118
112
119
[ TestCategory ( "Helpers" ) ]
113
120
[ TestMethod ]
121
+ [ Obsolete ]
114
122
public void Test_StorageHelper_LegacyPublicClassTest ( )
115
123
{
116
124
string key = "Contact" ;
@@ -131,6 +139,7 @@ public void Test_StorageHelper_LegacyPublicClassTest()
131
139
132
140
[ TestCategory ( "Helpers" ) ]
133
141
[ TestMethod ]
142
+ [ Obsolete ]
134
143
public void Test_StorageHelper_IntTest ( )
135
144
{
136
145
string key = "NewLifeUniverseAndEverything" ;
@@ -147,6 +156,7 @@ public void Test_StorageHelper_IntTest()
147
156
148
157
[ TestCategory ( "Helpers" ) ]
149
158
[ TestMethod ]
159
+ [ Obsolete ]
150
160
public void Test_StorageHelper_NewDateTest ( )
151
161
{
152
162
string key = "NewChristmasDay" ;
@@ -163,6 +173,7 @@ public void Test_StorageHelper_NewDateTest()
163
173
164
174
[ TestCategory ( "Helpers" ) ]
165
175
[ TestMethod ]
176
+ [ Obsolete ]
166
177
public void Test_StorageHelper_NewPersonTest ( )
167
178
{
168
179
string key = "Contact" ;
0 commit comments