-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDegreeTest.cs
75 lines (65 loc) · 2.26 KB
/
DegreeTest.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
63
64
65
66
67
68
69
70
71
72
73
74
75
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.Pex.Framework;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using QuickGraph.Serialization;
using Microsoft.Pex.Framework.Settings;
namespace QuickGraph.Tests
{
[TestClass, PexClass]
public partial class DegreeTest
{
[TestMethod]
public void DegreeSumEqualsTwiceEdgeCountAll()
{
foreach (var g in TestGraphFactory.GetBidirectionalGraphs())
this.DegreeSumEqualsTwiceEdgeCount(g);
}
[PexMethod]
public void DegreeSumEqualsTwiceEdgeCount<TVertex, TEdge>(
[PexAssumeNotNull]IBidirectionalGraph<TVertex, TEdge> graph)
where TEdge : IEdge<TVertex>
{
int edgeCount = graph.EdgeCount;
int degCount = 0;
foreach (var v in graph.Vertices)
degCount += graph.Degree(v);
Assert.AreEqual(edgeCount * 2, degCount);
}
[TestMethod]
public void InDegreeSumEqualsEdgeCountAll()
{
foreach (var g in TestGraphFactory.GetBidirectionalGraphs())
this.InDegreeSumEqualsEdgeCount(g);
}
[PexMethod]
public void InDegreeSumEqualsEdgeCount<TVertex,TEdge>(
[PexAssumeNotNull] IBidirectionalGraph<TVertex, TEdge> graph)
where TEdge : IEdge<TVertex>
{
int edgeCount = graph.EdgeCount;
int degCount = 0;
foreach (var v in graph.Vertices)
degCount += graph.InDegree(v);
Assert.AreEqual(edgeCount, degCount);
}
[TestMethod]
public void OutDegreeSumEqualsEdgeCountAll()
{
foreach (var g in TestGraphFactory.GetBidirectionalGraphs())
this.OutDegreeSumEqualsEdgeCount(g);
}
[PexMethod]
public void OutDegreeSumEqualsEdgeCount<TVertex,TEdge>(
[PexAssumeNotNull] IBidirectionalGraph<TVertex, TEdge> graph)
where TEdge : IEdge<TVertex>
{
int edgeCount = graph.EdgeCount;
int degCount = 0;
foreach (var v in graph.Vertices)
degCount += graph.OutDegree(v);
Assert.AreEqual(edgeCount, degCount);
}
}
}