diff options
author | marcinzelent <zelent.marcin@gmail.com> | 2017-12-01 17:56:38 +0100 |
---|---|---|
committer | marcinzelent <zelent.marcin@gmail.com> | 2017-12-01 17:56:38 +0100 |
commit | 79bf391df757c50374a5acde3008860d48295926 (patch) | |
tree | b11cbc30c006f5062f31acabc18f963280f8f850 /PollutometerWebApi.Tests/Test.cs | |
parent | 7b1511ef9b0aa26d4591ff6cae60fb7377912ea7 (diff) |
Added periodical checking of pollution and sending e-mail.
Diffstat (limited to 'PollutometerWebApi.Tests/Test.cs')
-rw-r--r-- | PollutometerWebApi.Tests/Test.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/PollutometerWebApi.Tests/Test.cs b/PollutometerWebApi.Tests/Test.cs new file mode 100644 index 0000000..254f0bc --- /dev/null +++ b/PollutometerWebApi.Tests/Test.cs @@ -0,0 +1,14 @@ +using NUnit.Framework; +using System; +namespace PollutometerWebApi.Tests +{ + [TestFixture()] + public class Test + { + [Test()] + public void TestCase() + { + EmailService.Start(); + } + } +} |