Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitbd7a881

Browse files
committed
rename
1 parent9543ebe commitbd7a881

File tree

57 files changed

+159
-164
lines changed

Some content is hidden

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

57 files changed

+159
-164
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ VisualStudioVersion = 16.0.31005.135
55
MinimumVisualStudioVersion =10.0.40219.1
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") ="Api","Api","{B55D2BE1-7C69-4EF0-BBB2-F1B8D0F9C8C4}"
77
EndProject
8-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") ="Xero.Demo.Api","src\Api\Xero.Demo.Api.csproj","{5D8B62B2-549D-44B4-BAEA-D95246B461FA}"
8+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") ="Dotnet.Sample.Api","src\Api\Dotnet.Sample.Api.csproj","{5D8B62B2-549D-44B4-BAEA-D95246B461FA}"
99
EndProject
1010
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") ="Api.Test","Api.Test","{84CAFD70-C5BC-45F5-8066-1898CD37ED15}"
1111
EndProject
12-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") ="Xero.Demo.Api.Tests","src\Api.Test\Xero.Demo.Api.Tests.csproj","{7825EF30-568B-428A-8125-C63AA149B101}"
12+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") ="Dotnet.Sample.Api.Tests","src\Api.Test\Dotnet.Sample.Api.Tests.csproj","{7825EF30-568B-428A-8125-C63AA149B101}"
1313
EndProject
1414
Global
1515
GlobalSection(SolutionConfigurationPlatforms) =preSolution

src/Api.Test/Xero.Demo.Api.Tests.csproj renamed to src/Api.Test/Dotnet.Sample.Api.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
</ItemGroup>
1919

2020
<ItemGroup>
21-
<ProjectReferenceInclude="..\Api\Xero.Demo.Api.csproj" />
21+
<ProjectReferenceInclude="..\Api\Dotnet.Sample.Api.csproj" />
2222
</ItemGroup>
2323
</Project>

‎src/Api.Test/EndpointsTests/IntegrationTests/ProductControllerTest.cs‎

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,14 @@
66
usingSystem.Net.Http.Headers;
77
usingSystem.Net.Http.Json;
88
usingSystem.Threading.Tasks;
9-
usingXero.Demo.Api.Domain;
10-
usingXero.Demo.Api.Domain.Models;
11-
usingXero.Demo.Api.Tests.EndpointTests.UnitTests.V1.TestData;
12-
usingXero.Demo.Api.Tests.Setup;
13-
usingXero.Demo.Api.Xero.Demo.Domain.Models;
9+
usingDotnet.Sample.Api.Tests.EndpointTests.UnitTests.V1.TestData;
10+
usingDotnet.Sample.Api.Tests.Setup;
11+
usingDotnet.Sample.Domain.Models;
1412
usingXunit;
15-
usingstaticXero.Demo.Api.Domain.Models.CONSTANTS;
13+
usingDotnet.Sample.Infrastructure;
14+
usingstaticDotnet.Sample.Shared.CONSTANTS;
1615

17-
namespaceXero.Demo.Api.Tests.EndpointTests.IntegrationTests
16+
namespaceDotnet.Sample.Api.Tests.EndpointTests.IntegrationTests
1817
{
1918
[Trait("Category","Integration")]
2019
publicclassProductControllerTest:IDisposable

‎src/Api.Test/EndpointsTests/UnitTests/V1/Products/CreateTest.cs‎

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,14 @@
33
usingMicrosoft.EntityFrameworkCore;
44
usingSystem;
55
usingSystem.Threading.Tasks;
6-
usingXero.Demo.Api.Datastore;
7-
usingXero.Demo.Api.Domain.Models;
8-
usingXero.Demo.Api.Endpoints.V1.Products;
9-
usingXero.Demo.Api.Tests.EndpointTests.UnitTests.V1.TestData;
6+
usingDotnet.Sample.Api.Endpoints.V1.Products;
7+
usingDotnet.Sample.Api.Tests.EndpointTests.UnitTests.V1.TestData;
108
usingXunit;
9+
usingDotnet.Sample.Datastore;
10+
usingDotnet.Sample.Domain.Models;
11+
usingDotnet.Sample.Shared;
1112

12-
namespaceXero.Demo.Api.Tests.EndpointTests.UnitTests.V1.Products
13+
namespaceDotnet.Sample.Api.Tests.EndpointTests.UnitTests.V1.Products
1314
{
1415
[Trait("Category","Unit")]
1516
publicclassCreateTest:IDisposable

‎src/Api.Test/EndpointsTests/UnitTests/V1/Products/DeleteTest.cs‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
usingMicrosoft.EntityFrameworkCore;
44
usingSystem;
55
usingSystem.Threading.Tasks;
6-
usingXero.Demo.Api.Datastore;
7-
usingXero.Demo.Api.Endpoints.V1.Products;
8-
usingXero.Demo.Api.Tests.EndpointTests.UnitTests.V1.TestData;
6+
usingDotnet.Sample.Api.Endpoints.V1.Products;
7+
usingDotnet.Sample.Api.Tests.EndpointTests.UnitTests.V1.TestData;
98
usingXunit;
9+
usingDotnet.Sample.Datastore;
1010

11-
namespaceXero.Demo.Api.Tests.EndpointTests.UnitTests.V1.Products
11+
namespaceDotnet.Sample.Api.Tests.EndpointTests.UnitTests.V1.Products
1212
{
1313
[Trait("Category","Unit")]
1414
publicclassDeleteTest:IDisposable

‎src/Api.Test/EndpointsTests/UnitTests/V1/Products/ReadTest.cs‎

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
usingSystem;
55
usingSystem.Collections.Generic;
66
usingSystem.Threading.Tasks;
7-
usingXero.Demo.Api.Datastore;
8-
usingXero.Demo.Api.Domain.Models;
9-
usingXero.Demo.Api.Endpoints.V1.Products;
10-
usingXero.Demo.Api.Tests.EndpointTests.UnitTests.V1.TestData;
7+
usingDotnet.Sample.Api.Endpoints.V1.Products;
8+
usingDotnet.Sample.Api.Tests.EndpointTests.UnitTests.V1.TestData;
119
usingXunit;
10+
usingDotnet.Sample.Datastore;
11+
usingDotnet.Sample.Domain.Models;
1212

13-
namespaceXero.Demo.Api.Tests.EndpointTests.UnitTests.V1.Products
13+
namespaceDotnet.Sample.Api.Tests.EndpointTests.UnitTests.V1.Products
1414
{
1515
[Trait("Category","Unit")]
1616
publicclassReadTest:IDisposable

‎src/Api.Test/EndpointsTests/UnitTests/V1/Products/UpdateTest.cs‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
usingMicrosoft.EntityFrameworkCore;
44
usingSystem;
55
usingSystem.Threading.Tasks;
6-
usingXero.Demo.Api.Datastore;
7-
usingXero.Demo.Api.Endpoints.V1.Products;
8-
usingXero.Demo.Api.Tests.EndpointTests.UnitTests.V1.TestData;
6+
usingDotnet.Sample.Api.Endpoints.V1.Products;
7+
usingDotnet.Sample.Api.Tests.EndpointTests.UnitTests.V1.TestData;
98
usingXunit;
9+
usingDotnet.Sample.Datastore;
1010

11-
namespaceXero.Demo.Api.Tests.EndpointTests.UnitTests.V1.Products
11+
namespaceDotnet.Sample.Api.Tests.EndpointTests.UnitTests.V1.Products
1212
{
1313
[Trait("Category","Unit")]
1414
publicclassUpdateTest:IDisposable

‎src/Api.Test/EndpointsTests/UnitTests/V1/TestData/SampleData.cs‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
usingSystem;
1+
usingDotnet.Sample.Domain.Models;
2+
usingSystem;
23
usingSystem.Collections.Generic;
3-
usingXero.Demo.Api.Domain.Models;
44

5-
namespaceXero.Demo.Api.Tests.EndpointTests.UnitTests.V1.TestData
5+
namespaceDotnet.Sample.Api.Tests.EndpointTests.UnitTests.V1.TestData
66
{
77
internalstaticclassSampleDataV1
88
{

‎src/Api.Test/EndpointsTests/UnitTests/V2/Products/CreateTest.cs‎

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,14 @@
33
usingMicrosoft.EntityFrameworkCore;
44
usingSystem;
55
usingSystem.Threading.Tasks;
6-
usingXero.Demo.Api.Datastore;
7-
usingXero.Demo.Api.Domain.Models;
8-
usingXero.Demo.Api.Endpoints.V2.Products;
9-
usingXero.Demo.Api.Tests.EndpointTests.UnitTests.V2.TestData;
6+
usingDotnet.Sample.Api.Endpoints.V2.Products;
7+
usingDotnet.Sample.Api.Tests.EndpointTests.UnitTests.V2.TestData;
108
usingXunit;
9+
usingDotnet.Sample.Datastore;
10+
usingDotnet.Sample.Shared;
11+
usingDotnet.Sample.Domain.Models;
1112

12-
namespaceXero.Demo.Api.Tests.EndpointTests.UnitTests.V2.Products
13+
namespaceDotnet.Sample.Api.Tests.EndpointTests.UnitTests.V2.Products
1314
{
1415
[Trait("Category","Unit")]
1516
publicclassCreateTest:IDisposable

‎src/Api.Test/EndpointsTests/UnitTests/V2/TestData/SampleData.cs‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
usingXero.Demo.Api.Domain.Models;
1+
usingDotnet.Sample.Domain.Models;
22

3-
namespaceXero.Demo.Api.Tests.EndpointTests.UnitTests.V2.TestData
3+
namespaceDotnet.Sample.Api.Tests.EndpointTests.UnitTests.V2.TestData
44
{
55
internalstaticclassSampleDataV2
66
{

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp