Skip to content

Commit 6fe7e75

Browse files
committed
Fixed type solver for nested public types
1 parent 9104e2c commit 6fe7e75

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

VSharp.API/VSharp.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ public static Statistics Cover(Assembly assembly, int timeout = -1, string outpu
179179

180180
foreach (var t in assembly.GetTypes())
181181
{
182-
if (t.IsPublic)
182+
if (t.IsPublic || t.IsNestedPublic)
183183
{
184184
foreach (var m in t.GetMethods(bindingFlags))
185185
{

VSharp.CSharpUtils/DiagnosticsUtils.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ private static bool DebuggerIsAttached()
77
{
88
return false;
99
}
10-
}
10+
}

VSharp.SILI.Core/TypeSolver.fs

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ module TypeSolver =
107107
| None -> sure <- false; assemblies
108108
for assembly in assemblies do
109109
yield! assembly.GetExportedTypes() |> Seq.filter validate |> Seq.map ConcreteType
110-
if supertypes |> Seq.forall (fun t -> t.IsPublic) then
110+
if supertypes |> Seq.forall (fun t -> t.IsPublic || t.IsNestedPublic) then
111111
yield mock supertypes |> MockType
112112
}
113113

0 commit comments

Comments
 (0)