Browse Source

Removed useless ignored TestChar16 test.

pull/547/head
triton 10 years ago
parent
commit
18bc6729ac
  1. 5
      tests/Basic/Basic.Tests.cs
  2. 2
      tests/Basic/Basic.h
  3. 3
      tests/UTF16/UTF16.h

5
tests/Basic/Basic.Tests.cs

@ -301,11 +301,6 @@ public class BasicTests : GeneratorTestFixture @@ -301,11 +301,6 @@ public class BasicTests : GeneratorTestFixture
TestNotStaticClass.StaticFunction();
}
[Test, Ignore]
public void TestChar16()
{
}
[Test]
public void TestCopyConstructor()
{

2
tests/Basic/Basic.h

@ -48,8 +48,6 @@ public: @@ -48,8 +48,6 @@ public:
static const int unsafe = 10;
const char* GetANSI();
// TODO: VC++ does not support char16
// char16 chr16;
// Not properly handled yet - ignore
float nested_array[2][2];

3
tests/UTF16/UTF16.h

@ -5,6 +5,9 @@ class DLL_API Foo @@ -5,6 +5,9 @@ class DLL_API Foo
public:
const char* Unicode;
// TODO: VC++ does not support char16
// char16 chr16;
// TODO: move this, it has nothing to do with Unicode, it's here only not to break the CLI branch
int operator[](int i) const;
int operator[](int i);

Loading…
Cancel
Save