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 1414
1515namespace Fossology . Rest . Dotnet . Test
1616{
17- using System ;
1817 using System . Collections . Generic ;
19- using System . Text ;
18+ using Fossology . Rest . Dotnet . Model ;
2019 using Microsoft . VisualStudio . TestTools . UnitTesting ;
21- using Model ;
2220 using Newtonsoft . Json ;
2321
2422 /// <summary>
@@ -27,10 +25,20 @@ namespace Fossology.Rest.Dotnet.Test
2725 [ TestClass ]
2826 public class DeserializationTest
2927 {
28+ /// <summary>
29+ /// Class StringListClass.
30+ /// </summary>
3031 public class StringListClass
3132 {
33+ /// <summary>
34+ /// Gets my list.
35+ /// </summary>
36+ /// <value>My list.</value>
3237 public List < string > MyList { get ; }
3338
39+ /// <summary>
40+ /// Initializes a new instance of the <see cref="StringListClass"/> class.
41+ /// </summary>
3442 public StringListClass ( )
3543 {
3644 this . MyList = new List < string > ( ) ;
@@ -82,7 +90,7 @@ public void TestSerializeStringList()
8290 [ TestMethod ]
8391 public void TestDeserializeComplex1 ( )
8492 {
85- const string JsonText =
93+ const string JsonText =
8694 "{"
8795 + "\" filePath\" :\" fetch-retry-master.zip/fetch-retry-master/package.json\" ,"
8896 + "\" agentFindings\" :[\" MIT\" ],"
You can’t perform that action at this time.
0 commit comments