diff --git a/IDEHelper/Tests/TestsB/BeefProj.toml b/IDEHelper/Tests/TestsB/BeefProj.toml index 4bf4d7e4..74b2bcd2 100644 --- a/IDEHelper/Tests/TestsB/BeefProj.toml +++ b/IDEHelper/Tests/TestsB/BeefProj.toml @@ -1,5 +1,6 @@ +FileVersion = 1 Dependencies = {corlib = "*", LibA = "*", LibB = "*"} [Project] Name = "TestsB" -StartupObject = "Program" +StartupObject = "TestsB.Program" diff --git a/IDEHelper/Tests/TestsB/src/Program.bf b/IDEHelper/Tests/TestsB/src/Program.bf new file mode 100644 index 00000000..a3c6e5e8 --- /dev/null +++ b/IDEHelper/Tests/TestsB/src/Program.bf @@ -0,0 +1,10 @@ +namespace TestsB +{ + class Program + { + public static void Main() + { + + } + } +} diff --git a/IDEHelper/Tests/scripts/Test.txt b/IDEHelper/Tests/scripts/PlatformChange.txt similarity index 100% rename from IDEHelper/Tests/scripts/Test.txt rename to IDEHelper/Tests/scripts/PlatformChange.txt diff --git a/IDEHelper/Tests/scripts/Reify.txt b/IDEHelper/Tests/scripts/Reify.txt new file mode 100644 index 00000000..dd9aeba7 --- /dev/null +++ b/IDEHelper/Tests/scripts/Reify.txt @@ -0,0 +1,3 @@ +Compile() +RunTests(true, false) +Compile() diff --git a/IDEHelper/Tests/src/Program.bf b/IDEHelper/Tests/src/Program.bf new file mode 100644 index 00000000..fa66b2d0 --- /dev/null +++ b/IDEHelper/Tests/src/Program.bf @@ -0,0 +1,10 @@ +namespace Tests +{ + class Program + { + public static void Main() + { + + } + } +}