From e8eec204fb32527da1e1050ec5539424a0a738cd Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Sat, 24 Oct 2020 15:50:06 -0700 Subject: [PATCH] Reification test --- IDEHelper/Tests/TestsB/BeefProj.toml | 3 ++- IDEHelper/Tests/TestsB/src/Program.bf | 10 ++++++++++ .../Tests/scripts/{Test.txt => PlatformChange.txt} | 0 IDEHelper/Tests/scripts/Reify.txt | 3 +++ IDEHelper/Tests/src/Program.bf | 10 ++++++++++ 5 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 IDEHelper/Tests/TestsB/src/Program.bf rename IDEHelper/Tests/scripts/{Test.txt => PlatformChange.txt} (100%) create mode 100644 IDEHelper/Tests/scripts/Reify.txt create mode 100644 IDEHelper/Tests/src/Program.bf 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() + { + + } + } +}