1
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
2
|
using Moq;
|
3
|
using ServerApp.Connection.XMLProtocolHandler;
|
4
|
using ServerApp.Parser.Parsers;
|
5
|
using ServerApp.Predictor;
|
6
|
using ServerApp.WeatherPredictionParser;
|
7
|
//
|
8
|
// Author: Roman Kalivoda
|
9
|
//
|
10
|
|
11
|
using System;
|
12
|
using System.Collections.Generic;
|
13
|
using System.Linq;
|
14
|
using System.Text;
|
15
|
using System.Threading.Tasks;
|
16
|
|
17
|
namespace ServerApp.Predictor.Tests
|
18
|
{
|
19
|
[TestClass()]
|
20
|
public class PredictionControllerTests
|
21
|
{
|
22
|
|
23
|
}
|
24
|
}
|