Skip to content

Commit 10c4f3f

Browse files
committed
Updated launchSettings.json to have the proper API name
Reverted changes to meetings management tests - AppVeyor doesn't like them, I'll fight that on separate PR
1 parent 45340a8 commit 10c4f3f

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

Sample/MeetingsManagement/MeetingsManagement.IntegrationTests/Meetings/CreateMeetingTests.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ public CreateMeetingTests(CreateMeetingFixture fixture)
4545
}
4646

4747
[Fact]
48+
[Trait("Category", "Exercise")]
4849
public async Task CreateCommand_ShouldReturn_CreatedStatus_With_MeetingId()
4950
{
5051
var commandResponse = fixture.CommandResponse;
@@ -57,6 +58,7 @@ public async Task CreateCommand_ShouldReturn_CreatedStatus_With_MeetingId()
5758
}
5859

5960
[Fact]
61+
[Trait("Category", "Exercise")]
6062
public void CreateCommand_ShouldPublish_MeetingCreateEvent()
6163
{
6264
// assert MeetingCreated event was produced to external bus
@@ -68,6 +70,7 @@ public void CreateCommand_ShouldPublish_MeetingCreateEvent()
6870
}
6971

7072
[Fact]
73+
[Trait("Category", "Exercise")]
7174
public async Task CreateCommand_ShouldUpdateReadModel()
7275
{
7376
// prepare query

Sample/MeetingsManagement/MeetingsManagement.IntegrationTests/Meetings/ScheduleMeetingTests.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ public ScheduleMeetingTests(ScheduleMeetingFixture fixture)
5353
}
5454

5555
[Fact]
56+
[Trait("Category", "Exercise")]
5657
public async Task CreateMeeting_ShouldReturn_CreatedStatus_With_MeetingId()
5758
{
5859
var commandResponse = fixture.CreateMeetingCommandResponse.EnsureSuccessStatusCode();
@@ -63,6 +64,7 @@ public async Task CreateMeeting_ShouldReturn_CreatedStatus_With_MeetingId()
6364
}
6465

6566
[Fact]
67+
[Trait("Category", "Exercise")]
6668
public async Task ScheduleMeeting_ShouldSucceed()
6769
{
6870
var commandResponse = fixture.ScheduleMeetingCommandResponse.EnsureSuccessStatusCode();
@@ -73,6 +75,7 @@ public async Task ScheduleMeeting_ShouldSucceed()
7375
}
7476

7577
[Fact]
78+
[Trait("Category", "Exercise")]
7679
public async Task ScheduleMeeting_ShouldUpdateReadModel()
7780
{
7881
//send query

Sample/Warehouse/Warehouse.Api/Properties/launchSettings.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
"ASPNETCORE_ENVIRONMENT": "Development"
1818
}
1919
},
20-
"CashRegisters.Api": {
20+
"Products.Api": {
2121
"commandName": "Project",
2222
"dotnetRunMessages": "true",
2323
"launchBrowser": true,
24-
"launchUrl": "swagger",
24+
"launchUrl": "api/products",
2525
"applicationUrl": "https://localhost:5001;http://localhost:5000",
2626
"environmentVariables": {
2727
"ASPNETCORE_ENVIRONMENT": "Development"

0 commit comments

Comments
 (0)