Skip to content

Commit b33a065

Browse files
committed
style(DeserializationTests.cs): fix StyleCop issues
1 parent 2530c0d commit b33a065

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

Fossology.Rest.Dotnet.Test/DeserializationTest.cs

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,9 @@
1414

1515
namespace 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\"],"

0 commit comments

Comments
 (0)