1 |
2b7b0f12
|
Roman Kalivoda
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
2 |
74bb2a59
|
Roman Kalivoda
|
using ServerApp.Predictor;
|
3 |
|
|
using System;
|
4 |
|
|
using System.Collections.Generic;
|
5 |
|
|
using System.Linq;
|
6 |
|
|
using System.Text;
|
7 |
|
|
using System.Threading.Tasks;
|
8 |
|
|
|
9 |
|
|
namespace ServerApp.Predictor.Tests
|
10 |
|
|
{
|
11 |
|
|
[TestClass()]
|
12 |
|
|
public class PredictionControllerTests
|
13 |
|
|
{
|
14 |
2b7b0f12
|
Roman Kalivoda
|
[TestMethod()]
|
15 |
|
|
public void PredictionControllerTest()
|
16 |
|
|
{
|
17 |
|
|
throw new NotImplementedException();
|
18 |
|
|
}
|
19 |
|
|
|
20 |
|
|
[TestMethod()]
|
21 |
|
|
public void GetPredictorsTest()
|
22 |
|
|
{
|
23 |
|
|
throw new NotImplementedException();
|
24 |
|
|
}
|
25 |
|
|
|
26 |
|
|
[TestMethod()]
|
27 |
|
|
public void LoadTest()
|
28 |
74bb2a59
|
Roman Kalivoda
|
{
|
29 |
2b7b0f12
|
Roman Kalivoda
|
throw new NotImplementedException();
|
30 |
|
|
}
|
31 |
74bb2a59
|
Roman Kalivoda
|
|
32 |
2b7b0f12
|
Roman Kalivoda
|
[TestMethod()]
|
33 |
|
|
public void PredictTest()
|
34 |
|
|
{
|
35 |
|
|
throw new NotImplementedException();
|
36 |
74bb2a59
|
Roman Kalivoda
|
}
|
37 |
|
|
|
38 |
|
|
[TestMethod()]
|
39 |
|
|
public void TrainTest()
|
40 |
|
|
{
|
41 |
|
|
throw new NotImplementedException();
|
42 |
|
|
}
|
43 |
|
|
}
|
44 |
|
|
}
|