mirror of https://github.com/mono/CppSharp.git
8 changed files with 67 additions and 27 deletions
@ -0,0 +1,14 @@ |
|||||||
|
using NamespacesDerived; |
||||||
|
using NUnit.Framework; |
||||||
|
|
||||||
|
[TestFixture] |
||||||
|
public class NamespaceDerivedTests |
||||||
|
{ |
||||||
|
[Test] |
||||||
|
public void TestNonRenamedMethod() |
||||||
|
{ |
||||||
|
var derived = new Derived(); |
||||||
|
var parent = derived.Parent; |
||||||
|
derived.parent(0); |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue