diff --git a/IDEHelper/Tests/LibA/src/LibA0.bf b/IDEHelper/Tests/LibA/src/LibA0.bf index 70efd4c2..88a73b71 100644 --- a/IDEHelper/Tests/LibA/src/LibA0.bf +++ b/IDEHelper/Tests/LibA/src/LibA0.bf @@ -111,4 +111,4 @@ static { return 1; } -} \ No newline at end of file +} diff --git a/IDEHelper/Tests/LibB/src/LibB0.bf b/IDEHelper/Tests/LibB/src/LibB0.bf index b947fca0..3a8cbc5a 100644 --- a/IDEHelper/Tests/LibB/src/LibB0.bf +++ b/IDEHelper/Tests/LibB/src/LibB0.bf @@ -40,4 +40,15 @@ static { return 2; } +} + +namespace LibSpace +{ + static + { + public static int MethodB() + { + return 200; + } + } } \ No newline at end of file diff --git a/IDEHelper/Tests/LibC/src/LibC0.bf b/IDEHelper/Tests/LibC/src/LibC0.bf index c6b1e981..93ddfe51 100644 --- a/IDEHelper/Tests/LibC/src/LibC0.bf +++ b/IDEHelper/Tests/LibC/src/LibC0.bf @@ -32,4 +32,15 @@ static { return 3; } +} + +namespace LibSpace +{ + static + { + public static int MethodA() + { + return 100; + } + } } \ No newline at end of file diff --git a/IDEHelper/Tests/src/Globals.bf b/IDEHelper/Tests/src/Globals.bf index 02c644f1..5fd557ce 100644 --- a/IDEHelper/Tests/src/Globals.bf +++ b/IDEHelper/Tests/src/Globals.bf @@ -45,6 +45,9 @@ namespace Tests const int* iPtr = cValsInt[2][0]; Test.Assert(iPtr == null); + + Test.Assert(LibSpace.MethodA() == 100); + Test.Assert(LibSpace.MethodB() == 200); } } }