Skip to content
Snippets Groups Projects
Commit 548620f9 authored by svatal's avatar svatal
Browse files

command test fixed to use new protocol file

parent 0ee8ca63
No related branches found
No related tags found
No related merge requests found
......@@ -12,11 +12,12 @@ namespace MasterDevs.ChromeDevTools.ProtocolGenerator.Tests
{
[TestMethod]
[DeploymentItem(DeploymentItems.Inspector11)]
[DeploymentItem(DeploymentItems.Protocol)]
[DeploymentItem(DeploymentItems.BrowserProtocol)]
[DeploymentItem(DeploymentItems.JsProtocol)]
public void EqualsTest()
{
var inspector11 = ProtocolProcessor.LoadProtocol(new[] { DeploymentItems.Inspector11 }, "inspector-1.1");
var protocol = ProtocolProcessor.LoadProtocol(new[] { DeploymentItems.Protocol }, "protocol");
var protocol = ProtocolProcessor.LoadProtocol(new[] { DeploymentItems.BrowserProtocol, DeploymentItems.JsProtocol }, "protocol");
ProtocolProcessor.ResolveTypeReferences(inspector11, new Dictionary<string, string>());
ProtocolProcessor.ResolveTypeReferences(protocol, new Dictionary<string, string>());
......
......@@ -10,7 +10,8 @@ namespace MasterDevs.ChromeDevTools.ProtocolGenerator.Tests
{
public const string Inspector10 = "Inspector-1.0.json";
public const string Inspector11 = "Inspector-1.1.json";
public const string Protocol = "protocol.json";
public const string BrowserProtocol = "browser_protocol.json";
public const string JsProtocol = "js_protocol.json";
public const string InspectoriOS8 = "Inspector-ios-8.0.json";
}
}
......@@ -67,12 +67,6 @@
<Link>Inspector-1.0.json</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="..\ProtocolGenerator\Inspector-iOS-8.0.json">
<Link>Inspector-iOS-8.0.json</Link>
</None>
<None Include="..\ProtocolGenerator\protocol.json">
<Link>protocol.json</Link>
</None>
</ItemGroup>
<Choose>
<When Condition="'$(VisualStudioVersion)' == '10.0' And '$(IsCodedUITest)' == 'True'">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment