Projekt

Obecné

Profil

Stáhnout (543 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 74bb2a59 Roman Kalivoda
//
2
// Author: Roman Kalivoda
3
//
4
using Microsoft.VisualStudio.TestTools.UnitTesting;
5
using ServerApp.Predictor;
6
using System;
7
using System.Collections.Generic;
8
using System.Linq;
9
using System.Text;
10
using System.Threading.Tasks;
11
12
namespace ServerApp.Predictor.Tests
13
{
14
    [TestClass()]
15
    public class PredictionControllerTests
16
    {
17
        [TestInitialize]
18
        public void SetUp()
19
        {
20
21
        }
22
23
        [TestMethod()]
24
        public void TrainTest()
25
        {
26
            throw new NotImplementedException();
27
        }
28
    }
29
}