Fixed tester project
This commit is contained in:
parent
f7a200c8b2
commit
819f527663
@ -17,9 +17,10 @@
|
|||||||
<PackageIconUrl />
|
<PackageIconUrl />
|
||||||
<LangVersion>latest</LangVersion>
|
<LangVersion>latest</LangVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Folder Include="Properties\" />
|
<Compile Remove="Properties\**" />
|
||||||
|
<EmbeddedResource Remove="Properties\**" />
|
||||||
|
<None Remove="Properties\**" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.IO.Ports;
|
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||||
|
using Nefarius.Peripherals.SerialPort;
|
||||||
|
|
||||||
namespace PInvokeSerialPort.Test
|
namespace PInvokeSerialPort.Test
|
||||||
{
|
{
|
||||||
@ -13,9 +13,9 @@ namespace PInvokeSerialPort.Test
|
|||||||
[TestClass]
|
[TestClass]
|
||||||
public class PInvokeSerialPortTest
|
public class PInvokeSerialPortTest
|
||||||
{
|
{
|
||||||
dynamic _sender;
|
private dynamic _reciever;
|
||||||
dynamic _reciever;
|
private dynamic _sender;
|
||||||
StringBuilder _stringBuilder;
|
private StringBuilder _stringBuilder;
|
||||||
|
|
||||||
public void OpenWriteDoWaitClose(Action action)
|
public void OpenWriteDoWaitClose(Action action)
|
||||||
{
|
{
|
||||||
@ -66,7 +66,8 @@ namespace PInvokeSerialPort.Test
|
|||||||
|
|
||||||
OpenWriteDoWaitClose(() =>
|
OpenWriteDoWaitClose(() =>
|
||||||
{
|
{
|
||||||
((System.IO.Ports.SerialPort)_reciever).DataReceived += (x, y) => _stringBuilder.Append(_reciever.ReadExisting());
|
((System.IO.Ports.SerialPort)_reciever).DataReceived +=
|
||||||
|
(x, y) => _stringBuilder.Append(_reciever.ReadExisting());
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -78,7 +79,8 @@ namespace PInvokeSerialPort.Test
|
|||||||
|
|
||||||
OpenWriteDoWaitClose(() =>
|
OpenWriteDoWaitClose(() =>
|
||||||
{
|
{
|
||||||
((System.IO.Ports.SerialPort)_reciever).DataReceived += (x, y) => _stringBuilder.Append(_reciever.ReadExisting());
|
((System.IO.Ports.SerialPort)_reciever).DataReceived +=
|
||||||
|
(x, y) => _stringBuilder.Append(_reciever.ReadExisting());
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user