NitroDebugger/NitroDebugger.UnitTests/PacketTypesTest.cs
2014-12-10 13:57:30 +01:00

53 lines
1.3 KiB
C#

//
// PacketTypesTest.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 System;
using NUnit.Framework;
using NitroDebugger.RSP;
using NitroDebugger.RSP.Packets;
namespace UnitTests
{
[TestFixture]
public class PacketTypesTest
{
[Test]
public void CreateOkReply()
{
new OkReply();
Assert.Pass();
}
[Test]
public void FactoryCreateOkReply()
{
Assert.IsInstanceOf<OkReply>(ReplyPacketFactory.CreateReplyPacket("OK"));
}
[Test]
public void CreateHaltedReasonCommand()
{
new HaltedReasonCommand();
Assert.Pass();
}
}
}