Projekt

Obecné

Profil

Stáhnout (960 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
using Microsoft.VisualStudio.TestTools.UnitTesting;
2
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
        [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
        {
29
            throw new NotImplementedException();
30
        }
31

    
32
        [TestMethod()]
33
        public void PredictTest()
34
        {
35
            throw new NotImplementedException();
36
        }
37

    
38
        [TestMethod()]
39
        public void TrainTest()
40
        {
41
            throw new NotImplementedException();
42
        }
43
    }
44
}
    (1-1/1)