Tools and libraries to glue C/C++ APIs to high-level languages
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

24 lines
449 B

//
// MsvcAbiTests.cs: Test cases to exercise the MsvcAbi
//
// Author:
// Alexander Corrado (alexander.corrado@gmail.com)
//
// Copyright (C) 2010 Alexander Corrado
//
using System;
using NUnit.Framework;
using Mono.VisualC.Interop.ABI;
namespace Tests {
[TestFixture]
public class MsvcAbiTests : SharedAbiTests {
public MsvcAbiTests () : base (new MsvcAbi ())
{
}
}
}