diff --git a/tests/NamespacesDerived/NamespacesDerived.Tests.cs b/tests/NamespacesDerived/NamespacesDerived.Tests.cs index 456976d4..287523c1 100644 --- a/tests/NamespacesDerived/NamespacesDerived.Tests.cs +++ b/tests/NamespacesDerived/NamespacesDerived.Tests.cs @@ -7,9 +7,8 @@ public class NamespaceDerivedTests [Test] public void TestNonRenamedMethod() { - // TODO: the premake is broken and does not add a reference to NamespaceBase.CSharp - //var derived = new Derived(); - //var parent = derived.Parent; - //derived.parent(0); + var derived = new Derived(); + var parent = derived.Parent; + derived.parent(0); } } \ No newline at end of file diff --git a/tests/NamespacesDerived/premake4.lua b/tests/NamespacesDerived/premake4.lua index ad98cb93..48d5ed45 100644 --- a/tests/NamespacesDerived/premake4.lua +++ b/tests/NamespacesDerived/premake4.lua @@ -1,4 +1,7 @@ group "Tests/Namespaces" SetupTestGeneratorProject("NamespacesDerived", "NamespacesBase") SetupTestNativeProject("NamespacesDerived", "NamespacesBase") - SetupTestProjectsCSharp("NamespacesDerived", "NamespacesBase") \ No newline at end of file + SetupTestProjectsCSharp("NamespacesDerived", "NamespacesBase") + + project("NamespacesDerived.Tests.CSharp") + links { "NamespacesBase.CSharp" } \ No newline at end of file