Skip to content

Commit 71a9fda

Browse files
committed
Project rename
1 parent a448942 commit 71a9fda

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+143
-134
lines changed

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,13 @@ SSLLWrapper.IntegrationTests/obj/Release/
1515
SSLLWrapper.IntegrationTests/obj/Debug/
1616
SSLLWrapper.IntegrationTests/bin/Release/
1717
SSLLWrapper.IntegrationTests/bin/Debug/
18+
SSLLabsApiWrapper/obj/Debug/
19+
SSLLabsApiWrapper.Tests/bin/Debug/
20+
SSLLabsApiWrapper/bin/
21+
SSLLabsApiWrapper.Tests/obj/
22+
SSLLabsApiWrapper/obj/
23+
SSLLabsApiWrapper.IntegrationTests/bin/
24+
SSLLabsApiWrapper.IntegrationTests/obj/Debug/SSLLWrapper.IntegrationTests.csproj.FileListAbsolute.txt
25+
SSLLabsApiWrapper.IntegrationTests/obj/
26+
SSLLabsApiWrapper.Tests/bin/
27+
*.nupkg

SSLLWrapper.IntegrationTests/AnalyzeTests.cs renamed to SSLLabsApiWrapper.IntegrationTests/AnalyzeTests.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
using System.Configuration;
22
using FluentAssertions;
33
using Microsoft.VisualStudio.TestTools.UnitTesting;
4-
using SSLLWrapper;
5-
using SSLLWrapper.Models.Response;
4+
using SSLLabsApiWrapper;
5+
using SSLLabsApiWrapper.Models.Response;
66

77
namespace given_that_I_make_a_analyze_request
88
{
99
[TestClass]
1010
public class when_i_expect_a_successful_result
1111
{
12-
private static SSLLService _ssllService;
12+
private static SSLLabsApiService _ssllService;
1313
private static Analyze _analyze;
1414
private static string _host;
1515

1616
[ClassInitialize]
1717
public static void Setup(TestContext testContext)
1818
{
1919
_host = ConfigurationManager.AppSettings.Get("EndpointHost");
20-
_ssllService = new SSLLService(ConfigurationManager.AppSettings.Get("ApiUrl"));
20+
_ssllService = new SSLLabsApiService(ConfigurationManager.AppSettings.Get("ApiUrl"));
2121
_analyze = _ssllService.Analyze(_host);
2222
}
2323

File renamed without changes.

SSLLWrapper.IntegrationTests/AutomaticAnalyzeTests.cs renamed to SSLLabsApiWrapper.IntegrationTests/AutomaticAnalyzeTests.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
using System.Configuration;
22
using FluentAssertions;
33
using Microsoft.VisualStudio.TestTools.UnitTesting;
4-
using SSLLWrapper;
5-
using SSLLWrapper.Models.Response;
4+
using SSLLabsApiWrapper;
5+
using SSLLabsApiWrapper.Models.Response;
66

77
namespace given_that_I_make_a_automaticanalyze_request
88
{
99
[TestClass]
1010
public class when_i_expect_a_successful_result
1111
{
12-
private static SSLLService _ssllService;
12+
private static SSLLabsApiService _ssllService;
1313
private static Analyze _analyze;
1414
private static string _host;
1515

1616
[ClassInitialize]
1717
public static void Setup(TestContext testContext)
1818
{
1919
_host = ConfigurationManager.AppSettings.Get("EndpointHost");
20-
_ssllService = new SSLLService(ConfigurationManager.AppSettings.Get("ApiUrl"));
20+
_ssllService = new SSLLabsApiService(ConfigurationManager.AppSettings.Get("ApiUrl"));
2121
_analyze = _ssllService.AutomaticAnalyze(_host);
2222
}
2323

SSLLWrapper.IntegrationTests/GetEndpointDetails.cs renamed to SSLLabsApiWrapper.IntegrationTests/GetEndpointDetails.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
using System.Configuration;
22
using FluentAssertions;
33
using Microsoft.VisualStudio.TestTools.UnitTesting;
4-
using SSLLWrapper;
5-
using SSLLWrapper.Models.Response;
4+
using SSLLabsApiWrapper;
5+
using SSLLabsApiWrapper.Models.Response;
66

77
namespace given_that_I_make_a_GetEndpointDetails_request
88
{
@@ -22,7 +22,7 @@ public static void Setup(TestContext testContext)
2222
_endpointHost = ConfigurationManager.AppSettings.Get("EndpointHost");
2323
_endpointIp = ConfigurationManager.AppSettings.Get("EndpointIP");
2424

25-
var ssllService = new SSLLService(ConfigurationManager.AppSettings.Get("ApiUrl"));
25+
var ssllService = new SSLLabsApiService(ConfigurationManager.AppSettings.Get("ApiUrl"));
2626
_endpoint = ssllService.GetEndpointData(_endpointHost, _endpointIp);
2727
}
2828

SSLLWrapper.IntegrationTests/GetStatusCodesTests.cs renamed to SSLLabsApiWrapper.IntegrationTests/GetStatusCodesTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
using System.Configuration;
22
using FluentAssertions;
33
using Microsoft.VisualStudio.TestTools.UnitTesting;
4-
using SSLLWrapper;
5-
using SSLLWrapper.Models.Response;
4+
using SSLLabsApiWrapper;
5+
using SSLLabsApiWrapper.Models.Response;
66

77
namespace given_that_I_make_a_GetStatusCodes_request
88
{
@@ -14,7 +14,7 @@ public class when_i_expect_a_successful_result
1414
[ClassInitialize]
1515
public static void Setup(TestContext testContext)
1616
{
17-
var ssllService = new SSLLService(ConfigurationManager.AppSettings.Get("ApiUrl"));
17+
var ssllService = new SSLLabsApiService(ConfigurationManager.AppSettings.Get("ApiUrl"));
1818
_statusCodes = ssllService.GetStatusCodes();
1919
}
2020

SSLLWrapper.IntegrationTests/InfoTests.cs renamed to SSLLabsApiWrapper.IntegrationTests/InfoTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
using System.Configuration;
22
using FluentAssertions;
33
using Microsoft.VisualStudio.TestTools.UnitTesting;
4-
using SSLLWrapper;
5-
using SSLLWrapper.Models.Response;
4+
using SSLLabsApiWrapper;
5+
using SSLLabsApiWrapper.Models.Response;
66

77
namespace given_that_I_make_a_info_request
88
{
@@ -14,7 +14,7 @@ public class when_i_expect_a_successful_result
1414
[ClassInitialize]
1515
public static void Setup(TestContext testContext)
1616
{
17-
var ssllService = new SSLLService(ConfigurationManager.AppSettings.Get("ApiUrl"));
17+
var ssllService = new SSLLabsApiService(ConfigurationManager.AppSettings.Get("ApiUrl"));
1818
_info = ssllService.Info();
1919
}
2020

SSLLWrapper.IntegrationTests/Properties/AssemblyInfo.cs renamed to SSLLabsApiWrapper.IntegrationTests/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
// General Information about an assembly is controlled through the following
66
// set of attributes. Change these attribute values to modify the information
77
// associated with an assembly.
8-
[assembly: AssemblyTitle("SSLLWrapper.IntegrationTests")]
8+
[assembly: AssemblyTitle("SSLLabsApiWrapper.IntegrationTests")]
99
[assembly: AssemblyDescription("")]
1010
[assembly: AssemblyConfiguration("")]
1111
[assembly: AssemblyCompany("")]
12-
[assembly: AssemblyProduct("SSLLWrapper.IntegrationTests")]
12+
[assembly: AssemblyProduct("SSLLabsApiWrapper.IntegrationTests")]
1313
[assembly: AssemblyCopyright("Copyright © 2015")]
1414
[assembly: AssemblyTrademark("")]
1515
[assembly: AssemblyCulture("")]

SSLLWrapper.IntegrationTests/SSLLWrapper.IntegrationTests.csproj renamed to SSLLabsApiWrapper.IntegrationTests/SSLLabsApiWrapper.IntegrationTests.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
<ProjectGuid>{2A33ABC5-814C-41B4-88D3-82BFC26CEA23}</ProjectGuid>
77
<OutputType>Library</OutputType>
88
<AppDesignerFolder>Properties</AppDesignerFolder>
9-
<RootNamespace>SSLLWrapper.IntegrationTests</RootNamespace>
10-
<AssemblyName>SSLLWrapper.IntegrationTests</AssemblyName>
9+
<RootNamespace>SSLLabsApiWrapper.IntegrationTests</RootNamespace>
10+
<AssemblyName>SSLLabsApiWrapper.IntegrationTests</AssemblyName>
1111
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
1212
<FileAlignment>512</FileAlignment>
1313
<ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
@@ -72,9 +72,9 @@
7272
<Compile Include="Properties\AssemblyInfo.cs" />
7373
</ItemGroup>
7474
<ItemGroup>
75-
<ProjectReference Include="..\SSLLWrapper\SSLLWrapper.csproj">
75+
<ProjectReference Include="..\SSLLabsApiWrapper\SSLLabsApiWrapper.csproj">
7676
<Project>{9d2ff62d-01c0-41b0-a3be-32005365290c}</Project>
77-
<Name>SSLLWrapper</Name>
77+
<Name>SSLLabsApiWrapper</Name>
7878
</ProjectReference>
7979
</ItemGroup>
8080
<ItemGroup>
File renamed without changes.

0 commit comments

Comments
 (0)