mirror of https://github.com/mono/CppSharp.git
c-sharpdotnetmonobindingsbridgecclangcpluspluscppsharpglueinteropparserparsingpinvokeswigsyntax-treevisitorsxamarinxamarin-bindings
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.
22 lines
475 B
22 lines
475 B
using CppSharp.Generators; |
|
using CppSharp.Utils; |
|
|
|
namespace CppSharp.Tests |
|
{ |
|
public class CSharpTempTests : LibraryTest |
|
{ |
|
public CSharpTempTests(LanguageGeneratorKind kind) |
|
: base("CSharpTemp", kind) |
|
{ |
|
} |
|
|
|
static class Program |
|
{ |
|
public static void Main(string[] args) |
|
{ |
|
ConsoleDriver.Run(new CSharpTempTests(LanguageGeneratorKind.CSharp)); |
|
} |
|
} |
|
} |
|
} |
|
|
|
|