forked from ClearFoundry/ClearScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClearScriptTest.cs
More file actions
40 lines (32 loc) · 1.15 KB
/
ClearScriptTest.cs
File metadata and controls
40 lines (32 loc) · 1.15 KB
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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
using System;
using System.Threading;
using Microsoft.ClearScript.V8;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace Microsoft.ClearScript.Test
{
public class ClearScriptTest
{
public TestContext TestContext { get; set; }
public void BaseTestCleanup()
{
DocumentLoader.Default.DiscardCachedDocuments();
GC.Collect();
GC.WaitForPendingFinalizers();
var proxy = V8TestProxy.Create();
var statistics = proxy.GetStatistics();
for (var attempts = 0; attempts < 10; attempts++)
{
if ((statistics.ContextCount == 0UL) && (statistics.IsolateCount == 0UL))
{
return;
}
Thread.Sleep(100);
statistics = proxy.GetStatistics();
}
Assert.AreEqual(0UL, statistics.ContextCount, "Not all V8 contexts were destroyed.");
Assert.AreEqual(0UL, statistics.IsolateCount, "Not all V8 isolates were destroyed.");
}
}
}