-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNetworkCollectTests.cs
62 lines (56 loc) · 1.85 KB
/
NetworkCollectTests.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
using Xunit;
using static MySQLCLRFunctions.NetworkCollect;
namespace MySQLCLRFunctions.Tests
{
public class NetworkCollectTests
{
[Fact()]
public void PingGetAddressTest()
{
const string input = "input";
const string validoutput = input + "not implemented";
var output = "not implemented yet";
Assert.Equal(expected: validoutput, output);
}
[Fact()]
public void GetMyIP4Test()
{
const string input = "input";
const string validoutput = input + "not implemented";
var output = "not implemented yet";
Assert.Equal(expected: validoutput, output);
}
[Fact()]
public void PingGetReturnBufferTest()
{
const string input = "input";
const string validoutput = input + "not implemented";
var output = "not implemented yet";
Assert.Equal(expected: validoutput, output);
}
[Fact()]
public void GetHostNamesTest()
{
const string input = "input";
const string validoutput = input + "not implemented";
var output = "not implemented yet";
Assert.Equal(expected: validoutput, output);
}
[Fact()]
public void GetHostAliasesTest()
{
const string input = "input";
const string validoutput = input + "not implemented";
var output = "not implemented yet";
Assert.Equal(expected: validoutput, output);
}
[Fact()]
public void GetHostRealNameTest()
{
const string input = "input";
const string validoutput = input + "not implemented";
var output = "not implemented yet";
Assert.Equal(expected: validoutput, output);
}
}
}