mirror of
https://github.com/pleonex/NitroDebugger.git
synced 2025-06-19 05:35:32 -04:00
70 lines
1.7 KiB
C#
70 lines
1.7 KiB
C#
//
|
|
// Test.cs
|
|
//
|
|
// Author:
|
|
// Benito Palacios Sánchez <benito356@gmail.com>
|
|
//
|
|
// Copyright (c) 2014 Benito Palacios Sánchez
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
using NUnit.Framework;
|
|
using System;
|
|
using NitroDebugger.RSP;
|
|
using System.Net.Sockets;
|
|
using System.Net;
|
|
using System.Runtime.Serialization.Formatters;
|
|
|
|
namespace UnitTests
|
|
{
|
|
[TestFixture]
|
|
public class SessionTests
|
|
{
|
|
private const int DefaultPort = 10101;
|
|
private TcpListener server;
|
|
|
|
[TestFixtureSetUp]
|
|
public void CreateServer()
|
|
{
|
|
server = new TcpListener(IPAddress.Loopback, DefaultPort);
|
|
server.Start();
|
|
}
|
|
|
|
[TestFixtureTearDown]
|
|
public void StopServer()
|
|
{
|
|
server.Stop();
|
|
}
|
|
|
|
[TearDown]
|
|
public void ResetServer()
|
|
{
|
|
while (server.Pending())
|
|
server.AcceptTcpClient().Close();
|
|
}
|
|
|
|
[Test]
|
|
public void ConnectLocalhostDefaultPort()
|
|
{
|
|
Assert.DoesNotThrow(() => new Session("localhost", DefaultPort));
|
|
}
|
|
|
|
[Test]
|
|
public void ConnectCloseLocalhostDefaultPort()
|
|
{
|
|
Assert.DoesNotThrow(() => new Session("localhost", DefaultPort).Close());
|
|
}
|
|
}
|
|
}
|
|
|