Skip to content

Commit

Permalink
(#354) Tests: add .NET pointer interop tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ForNeVeR committed Aug 17, 2023
1 parent a43396e commit a1689a2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Cesium.CodeGen.Tests/CodeGenNetInteropTests.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
using System.Diagnostics.CodeAnalysis;

namespace Cesium.CodeGen.Tests;

public class CodeGenNetInteropTests
{
private static void DoTest(TargetArchitectureSet architecture, string cSharpCode, string cCode)
private static void DoTest(
TargetArchitectureSet architecture,
[StringSyntax("csharp")] string cSharpCode,
[StringSyntax("cpp")] string cCode)
{
Assert.False(true,
"TODO: Compile .NET Assembly, compile C assembly with reference to .NET, dump the byte code");
Expand Down

0 comments on commit a1689a2

Please sign in to comment.