Skip to content

Commit efc4688

Browse files
committed
Fixing names of classes to match the file names + namespaces now correct
1 parent 31c0aee commit efc4688

23 files changed

+46
-55
lines changed

Source/Clients/DotNET.Specs/Projections/ModelBound/for_ModelBoundProjectionBuilder/when_building/with_all_configuration_attributes.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
using Cratis.Chronicle.Contracts.Projections;
55

6-
namespace Cratis.Chronicle.Projections.ModelBound.for_ModelBoundProjectionBuilder;
6+
namespace Cratis.Chronicle.Projections.ModelBound.for_ModelBoundProjectionBuilder.when_building;
77

8-
public class when_building_with_all_configuration_attributes : given.a_model_bound_projection_builder
8+
public class with_all_configuration_attributes : given.a_model_bound_projection_builder
99
{
1010
ProjectionDefinition _result;
1111

Source/Clients/DotNET.Specs/Projections/ModelBound/for_ModelBoundProjectionBuilder/when_building/with_from_event_sequence.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
using Cratis.Chronicle.Contracts.Projections;
55

6-
namespace Cratis.Chronicle.Projections.ModelBound.for_ModelBoundProjectionBuilder;
6+
namespace Cratis.Chronicle.Projections.ModelBound.for_ModelBoundProjectionBuilder.when_building;
77

8-
public class when_building_with_from_event_sequence : given.a_model_bound_projection_builder
8+
public class with_from_event_sequence : given.a_model_bound_projection_builder
99
{
1010
ProjectionDefinition _result;
1111

Source/Clients/DotNET.Specs/Projections/ModelBound/for_ModelBoundProjectionBuilder/when_building/with_not_rewindable.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
using Cratis.Chronicle.Contracts.Projections;
55
using Cratis.Chronicle.EventSequences;
66

7-
namespace Cratis.Chronicle.Projections.ModelBound.for_ModelBoundProjectionBuilder;
7+
namespace Cratis.Chronicle.Projections.ModelBound.for_ModelBoundProjectionBuilder.when_building;
88

9-
public class when_building_with_not_rewindable : given.a_model_bound_projection_builder
9+
public class with_not_rewindable : given.a_model_bound_projection_builder
1010
{
1111
ProjectionDefinition _result;
1212

Source/Clients/DotNET.Specs/Projections/ModelBound/for_ModelBoundProjectionBuilder/when_building/with_passive.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
using Cratis.Chronicle.Contracts.Projections;
55
using Cratis.Chronicle.EventSequences;
66

7-
namespace Cratis.Chronicle.Projections.ModelBound.for_ModelBoundProjectionBuilder;
7+
namespace Cratis.Chronicle.Projections.ModelBound.for_ModelBoundProjectionBuilder.when_building;
88

9-
public class when_building_with_passive : given.a_model_bound_projection_builder
9+
public class with_passive : given.a_model_bound_projection_builder
1010
{
1111
ProjectionDefinition _result;
1212

Source/Clients/DotNET.Specs/Projections/ModelBound/for_ModelBoundProjectionBuilder/when_building_model/with_add_and_subtract.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
using Cratis.Chronicle.Contracts.Projections;
55
using Cratis.Chronicle.Events;
66

7-
namespace Cratis.Chronicle.Projections.ModelBound.for_ModelBoundProjectionBuilder;
7+
namespace Cratis.Chronicle.Projections.ModelBound.for_ModelBoundProjectionBuilder.when_building_model;
88

9-
public class when_building_model_with_add_and_subtract : given.a_model_bound_projection_builder
9+
public class with_add_and_subtract : given.a_model_bound_projection_builder
1010
{
1111
ProjectionDefinition _result;
1212

Source/Clients/DotNET.Specs/Projections/ModelBound/for_ModelBoundProjectionBuilder/when_building_model/with_children_from/and_child_has_id_by_convention.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
// Copyright (c) Cratis. All rights reserved.
22
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

4-
#pragma warning disable SA1649 // File name should match first type name
54
#pragma warning disable SA1402 // File may only contain a single type
65

76
using Cratis.Chronicle.Contracts.Projections;
87
using Cratis.Chronicle.Events;
98
using Cratis.Chronicle.Keys;
109

11-
namespace Cratis.Chronicle.Projections.ModelBound.for_ModelBoundProjectionBuilder;
10+
namespace Cratis.Chronicle.Projections.ModelBound.for_ModelBoundProjectionBuilder.when_building_model.with_children_from;
1211

13-
public class when_building_model_with_children_from_and_child_has_id_by_convention : given.a_model_bound_projection_builder
12+
public class and_child_has_id_by_convention : given.a_model_bound_projection_builder
1413
{
1514
ProjectionDefinition _result;
1615

Source/Clients/DotNET.Specs/Projections/ModelBound/for_ModelBoundProjectionBuilder/when_building_model/with_children_from/and_child_has_key_attribute.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
// Copyright (c) Cratis. All rights reserved.
22
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

4-
#pragma warning disable SA1649 // File name should match first type name
54
#pragma warning disable SA1402 // File may only contain a single type
65

76
using Cratis.Chronicle.Contracts.Projections;
87
using Cratis.Chronicle.Events;
98
using Cratis.Chronicle.Keys;
109

11-
namespace Cratis.Chronicle.Projections.ModelBound.for_ModelBoundProjectionBuilder;
10+
namespace Cratis.Chronicle.Projections.ModelBound.for_ModelBoundProjectionBuilder.when_building_model.with_children_from;
1211

13-
public class when_building_model_with_children_from_and_child_has_key_attribute : given.a_model_bound_projection_builder
12+
public class and_child_has_key_attribute : given.a_model_bound_projection_builder
1413
{
1514
ProjectionDefinition _result;
1615

Source/Clients/DotNET.Specs/Projections/ModelBound/for_ModelBoundProjectionBuilder/when_building_model/with_children_from/and_no_key_property_defaults_to_event_source_id.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
// Copyright (c) Cratis. All rights reserved.
22
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

4-
#pragma warning disable SA1649 // File name should match first type name
54
#pragma warning disable SA1402 // File may only contain a single type
65

76
using Cratis.Chronicle.Contracts.Projections;
87
using Cratis.Chronicle.Events;
98
using Cratis.Chronicle.Keys;
109

11-
namespace Cratis.Chronicle.Projections.ModelBound.for_ModelBoundProjectionBuilder;
10+
namespace Cratis.Chronicle.Projections.ModelBound.for_ModelBoundProjectionBuilder.when_building_model.with_children_from;
1211

13-
public class when_building_model_with_children_from_and_no_key_property_defaults_to_event_source_id : given.a_model_bound_projection_builder
12+
public class and_no_key_property_defaults_to_event_source_id : given.a_model_bound_projection_builder
1413
{
1514
ProjectionDefinition _result;
1615

Source/Clients/DotNET.Specs/Projections/ModelBound/for_ModelBoundProjectionBuilder/when_building_model/with_children_from/using_parent_id_as_key.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
// Copyright (c) Cratis. All rights reserved.
22
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

4-
#pragma warning disable SA1649 // File name should match first type name
54
#pragma warning disable SA1402 // File may only contain a single type
65

76
using Cratis.Chronicle.Contracts.Projections;
87
using Cratis.Chronicle.Events;
98
using Cratis.Chronicle.Keys;
109

11-
namespace Cratis.Chronicle.Projections.ModelBound.for_ModelBoundProjectionBuilder;
10+
namespace Cratis.Chronicle.Projections.ModelBound.for_ModelBoundProjectionBuilder.when_building_model.with_children_from;
1211

13-
public class when_building_model_with_children_from_using_parent_id_as_key : given.a_model_bound_projection_builder
12+
public class using_parent_id_as_key : given.a_model_bound_projection_builder
1413
{
1514
ProjectionDefinition _result;
1615

Source/Clients/DotNET.Specs/Projections/ModelBound/for_ModelBoundProjectionBuilder/when_building_model/with_children_from/with_auto_map.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
// Copyright (c) Cratis. All rights reserved.
22
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

4-
#pragma warning disable SA1649 // File name should match first type name
54
#pragma warning disable SA1402 // File may only contain a single type
65

76
using Cratis.Chronicle.Contracts.Projections;
87
using Cratis.Chronicle.Events;
98
using Cratis.Chronicle.Keys;
109

11-
namespace Cratis.Chronicle.Projections.ModelBound.for_ModelBoundProjectionBuilder;
10+
namespace Cratis.Chronicle.Projections.ModelBound.for_ModelBoundProjectionBuilder.when_building_model.with_children_from;
1211

13-
public class when_building_model_with_children_from_with_auto_map : given.a_model_bound_projection_builder
12+
public class with_auto_map : given.a_model_bound_projection_builder
1413
{
1514
ProjectionDefinition _result;
1615

0 commit comments

Comments
 (0)