aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormarcinzelent <zelent.marcin@gmail.com>2017-12-01 17:56:38 +0100
committermarcinzelent <zelent.marcin@gmail.com>2017-12-01 17:56:38 +0100
commit79bf391df757c50374a5acde3008860d48295926 (patch)
treeb11cbc30c006f5062f31acabc18f963280f8f850 /PollutometerWebApi.Tests/Test.cs
parent7b1511ef9b0aa26d4591ff6cae60fb7377912ea7 (diff)
Added periodical checking of pollution and sending e-mail.
Diffstat (limited to 'PollutometerWebApi.Tests/Test.cs')
-rw-r--r--PollutometerWebApi.Tests/Test.cs14
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();
+ }
+ }
+}