SIGN IN SIGN UP
cefsharp / CefSharp UNCLAIMED

.NET (WPF and Windows Forms) bindings for the Chromium Embedded Framework

0 0 118 C#
using System;
2012-02-29 14:59:55 -08:00
using NUnit.Framework;
namespace CefSharp.WinForms.Test
{
[TestFixture]
public class InitTest
{
private WebView web_view;
[SetUp]
public void SetUp()
{
var settings = new Settings();
if (!CEF.Initialize(settings))
{
Assert.Fail();
}
web_view = new WebView();
}
[Test]
public void Foo()
{
Assert.Pass();
}
}
}