File tree Expand file tree Collapse file tree 1 file changed +12
-4
lines changed
Fossology.Rest.Dotnet.Test Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Original file line number Diff line number Diff line change 14
14
15
15
namespace Fossology . Rest . Dotnet . Test
16
16
{
17
- using System ;
18
17
using System . Collections . Generic ;
19
- using System . Text ;
18
+ using Fossology . Rest . Dotnet . Model ;
20
19
using Microsoft . VisualStudio . TestTools . UnitTesting ;
21
- using Model ;
22
20
using Newtonsoft . Json ;
23
21
24
22
/// <summary>
@@ -27,10 +25,20 @@ namespace Fossology.Rest.Dotnet.Test
27
25
[ TestClass ]
28
26
public class DeserializationTest
29
27
{
28
+ /// <summary>
29
+ /// Class StringListClass.
30
+ /// </summary>
30
31
public class StringListClass
31
32
{
33
+ /// <summary>
34
+ /// Gets my list.
35
+ /// </summary>
36
+ /// <value>My list.</value>
32
37
public List < string > MyList { get ; }
33
38
39
+ /// <summary>
40
+ /// Initializes a new instance of the <see cref="StringListClass"/> class.
41
+ /// </summary>
34
42
public StringListClass ( )
35
43
{
36
44
this . MyList = new List < string > ( ) ;
@@ -82,7 +90,7 @@ public void TestSerializeStringList()
82
90
[ TestMethod ]
83
91
public void TestDeserializeComplex1 ( )
84
92
{
85
- const string JsonText =
93
+ const string JsonText =
86
94
"{"
87
95
+ "\" filePath\" :\" fetch-retry-master.zip/fetch-retry-master/package.json\" ,"
88
96
+ "\" agentFindings\" :[\" MIT\" ],"
You can’t perform that action at this time.
0 commit comments