-
Notifications
You must be signed in to change notification settings - Fork 462
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding E2E Test for Twin Operations. (#754)
* Adding E2E Test for Twin Operations. * Fixing StyleCop Issues. * Addressing Code Review Comments. * Fixing Code Style. * Adressing more code review comments. * Passing Code Style.
- Loading branch information
1 parent
6f7c6cd
commit 5bbcec0
Showing
5 changed files
with
84 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"moduleId" : "tempSensor", | ||
"properties" : { | ||
"desired" : { | ||
"SendInterval": 42, | ||
"SendData": true, | ||
"OtherType" : "test" | ||
}, | ||
"reported" : { | ||
"SendInterval": 42, | ||
"SendData": true | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// Copyright (c) Microsoft. All rights reserved. | ||
namespace IotEdgeQuickstart.Details | ||
{ | ||
using System.Collections.Generic; | ||
using Microsoft.Azure.Devices.Shared; | ||
using Newtonsoft.Json; | ||
|
||
public class TwinTestConfiguration | ||
{ | ||
[JsonProperty(PropertyName = "moduleId")] | ||
public string ModuleId { get; set; } | ||
|
||
[JsonProperty(PropertyName = "properties")] | ||
public TwinProperties Properties { get; set; } | ||
} | ||
} |