11using System . Linq ;
2- using NServiceBus . FileBasedRouting . Tests . Contracts ;
3- using NServiceBus . FileBasedRouting . Tests . Contracts . Commands ;
42using NUnit . Framework ;
53using System . Xml . Linq ;
64using NServiceBus . FileBasedRouting ;
5+ using Tests . Contracts ;
6+ using Tests . Contracts . Commands ;
77
88public class XmlRoutingFileTests
99{
@@ -14,8 +14,8 @@ public void It_can_parse_file_with_single_commands()
1414<endpoints>
1515<endpoint name=""EndpointName"">
1616<handles>
17- <command type = ""NServiceBus.FileBasedRouting. Tests.Contracts.Commands.A, NServiceBus.FileBasedRouting. Tests.Contracts"" />
18- <command type = ""NServiceBus.FileBasedRouting. Tests.Contracts.Commands.B, NServiceBus.FileBasedRouting. Tests.Contracts"" />
17+ <command type = ""Tests.Contracts.Commands.A, Tests.Contracts"" />
18+ <command type = ""Tests.Contracts.Commands.B, Tests.Contracts"" />
1919</handles>
2020</endpoint>
2121</endpoints>
@@ -36,7 +36,7 @@ public void It_can_parse_file_with_commands_with_assembly_only()
3636<endpoints>
3737<endpoint name=""EndpointName"">
3838<handles>
39- <commands assembly = ""NServiceBus.FileBasedRouting. Tests.Contracts"" />
39+ <commands assembly = ""Tests.Contracts"" />
4040</handles>
4141</endpoint>
4242</endpoints>
@@ -57,7 +57,7 @@ public void It_can_parse_file_with_commands_with_assembly_and_namespace()
5757<endpoints>
5858<endpoint name=""EndpointName"">
5959<handles>
60- <commands assembly = ""NServiceBus.FileBasedRouting. Tests.Contracts"" namespace=""NServiceBus.FileBasedRouting. Tests.Contracts.Commands"" />
60+ <commands assembly = ""Tests.Contracts"" namespace=""Tests.Contracts.Commands"" />
6161</handles>
6262</endpoint>
6363</endpoints>
@@ -78,7 +78,7 @@ public void It_can_parse_file_with_commands_with_assembly_and_empty_namespace()
7878<endpoints>
7979<endpoint name=""EndpointName"">
8080<handles>
81- <commands assembly = ""NServiceBus.FileBasedRouting. Tests.Contracts"" namespace="""" />
81+ <commands assembly = ""Tests.Contracts"" namespace="""" />
8282</handles>
8383</endpoint>
8484</endpoints>
@@ -99,12 +99,12 @@ public void It_provides_distinct_result_even_when_types_are_registered_multiple_
9999<endpoints>
100100<endpoint name=""EndpointName"">
101101<handles>
102- <command type = ""NServiceBus.FileBasedRouting. Tests.Contracts.Commands.A, NServiceBus.FileBasedRouting. Tests.Contracts"" />
103- <command type = ""NServiceBus.FileBasedRouting. Tests.Contracts.Commands.A, NServiceBus.FileBasedRouting. Tests.Contracts"" />
104- <command type = ""NServiceBus.FileBasedRouting. Tests.Contracts.Commands.B, NServiceBus.FileBasedRouting. Tests.Contracts"" />
105- <command type = ""NServiceBus.FileBasedRouting. Tests.Contracts.Commands.B, NServiceBus.FileBasedRouting. Tests.Contracts"" />
106- <commands assembly = ""NServiceBus.FileBasedRouting. Tests.Contracts"" namespace=""NServiceBus.FileBasedRouting. Tests.Contracts.Commands"" />
107- <commands assembly = ""NServiceBus.FileBasedRouting. Tests.Contracts"" namespace=""NServiceBus.FileBasedRouting. Tests.Contracts.Commands"" />
102+ <command type = ""Tests.Contracts.Commands.A, Tests.Contracts"" />
103+ <command type = ""Tests.Contracts.Commands.A, Tests.Contracts"" />
104+ <command type = ""Tests.Contracts.Commands.B, Tests.Contracts"" />
105+ <command type = ""Tests.Contracts.Commands.B, Tests.Contracts"" />
106+ <commands assembly = ""Tests.Contracts"" namespace=""Tests.Contracts.Commands"" />
107+ <commands assembly = ""Tests.Contracts"" namespace=""Tests.Contracts.Commands"" />
108108</handles>
109109</endpoint>
110110</endpoints>
0 commit comments