forked from ludeeus/netdaemon-app-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #75 from eugeneniemand/NoMoqUnitTest
No moq unit test
- Loading branch information
Showing
87 changed files
with
21,637 additions
and
10,660 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
namespace Niemand.Helpers; | ||
namespace NetDaemon.Helpers; | ||
|
||
public class AlexaDeviceConfig | ||
{ | ||
|
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 |
---|---|---|
@@ -1,14 +1,12 @@ | ||
using System.Reactive.Subjects; | ||
|
||
namespace Niemand.Helpers; | ||
namespace Niemand.Helpers; | ||
|
||
public interface IAlexa | ||
{ | ||
public Dictionary<string, AlexaPeopleConfig> People { get; } | ||
public IObservable<PromptResponse> PromptResponses { get; } | ||
void Announce(Alexa.Config config); | ||
void Announce(string mediaPlayer, string message); | ||
void Prompt(string mediaPlayer, string message, string eventId); | ||
void TextToSpeech(Alexa.Config config); | ||
void TextToSpeech(string mediaPlayer, string message); | ||
public Subject<PromptResponse> PromptResponses { get; } | ||
public Dictionary<string, AlexaPeopleConfig> People { get; } | ||
} |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
namespace Niemand.Helpers; | ||
namespace NetDaemon.Helpers; | ||
|
||
public interface IVoiceProvider | ||
{ | ||
|
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
namespace Niemand.Helpers; | ||
namespace NetDaemon.Helpers; | ||
|
||
public class VoiceProvider : IVoiceProvider | ||
{ | ||
|
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
namespace Niemand.Helpers; | ||
namespace NetDaemon.Helpers; | ||
|
||
public static class Shared | ||
{ | ||
|
Oops, something went wrong.