mirror of https://github.com/mono/CppSharp.git
5 changed files with 35 additions and 1 deletions
@ -0,0 +1,16 @@ |
|||||||
|
using System; |
||||||
|
using NUnit.Framework; |
||||||
|
|
||||||
|
namespace Tests { |
||||||
|
|
||||||
|
[TestFixture] |
||||||
|
public class ManglingTests { |
||||||
|
|
||||||
|
[Test] |
||||||
|
public void TestCompression1 () |
||||||
|
{ |
||||||
|
Mangling.CompressionTest1 (null, "foo", null, "bar"); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
@ -0,0 +1,8 @@ |
|||||||
|
|
||||||
|
#include "ManglingTests.h" |
||||||
|
#include <stdio.h> |
||||||
|
|
||||||
|
void Mangling::CompressionTest1 (const Mangling* a1, const char* a2, const Mangling* a3, const char* a4) |
||||||
|
{ |
||||||
|
printf ("CompressionTest1 mangled correctly"); |
||||||
|
} |
@ -0,0 +1,5 @@ |
|||||||
|
|
||||||
|
class Mangling { |
||||||
|
public: |
||||||
|
static void CompressionTest1 (const Mangling* a1, const char* a2, const Mangling* a3, const char* a4); |
||||||
|
}; |
Loading…
Reference in new issue