From 711392a559f4227d6fe537ddf4189f6d2a934bc3 Mon Sep 17 00:00:00 2001 From: Jacob Trimble Date: Wed, 6 Apr 2016 15:11:03 -0700 Subject: [PATCH] Renamed TestApplication and TestProject. These names were ambiguous and confusing. So I renamed them to 'Example Project' and 'Unit Tests' respectively. --- .../Example Project.csproj | 4 ++-- {TestApplication => Example Project}/Program.cs | 2 +- .../Properties/AssemblyInfo.cs | 0 {TestApplication => Example Project}/Tests.lua | 0 {TestApplication => Example Project}/app.config | 0 ModMaker.Lua.sln | 4 ++-- {TestProject => Unit Tests}/Base/HelpersTest.cs | 2 +- {TestProject => Unit Tests}/Base/PlainParserTest.cs | 2 +- {TestProject => Unit Tests}/Base/TokenizerTest.cs | 2 +- {TestProject => Unit Tests}/Net/LuaRuntimeTest.cs | 2 +- {TestProject => Unit Tests}/Properties/AssemblyInfo.cs | 0 .../TestProject.csproj => Unit Tests/Unit Tests.csproj | 4 ++-- 12 files changed, 11 insertions(+), 11 deletions(-) rename TestApplication/TestApplication.csproj => Example Project/Example Project.csproj (98%) rename {TestApplication => Example Project}/Program.cs (98%) rename {TestApplication => Example Project}/Properties/AssemblyInfo.cs (100%) rename {TestApplication => Example Project}/Tests.lua (100%) rename {TestApplication => Example Project}/app.config (100%) rename {TestProject => Unit Tests}/Base/HelpersTest.cs (99%) rename {TestProject => Unit Tests}/Base/PlainParserTest.cs (99%) rename {TestProject => Unit Tests}/Base/TokenizerTest.cs (99%) rename {TestProject => Unit Tests}/Net/LuaRuntimeTest.cs (99%) rename {TestProject => Unit Tests}/Properties/AssemblyInfo.cs (100%) rename TestProject/TestProject.csproj => Unit Tests/Unit Tests.csproj (97%) diff --git a/TestApplication/TestApplication.csproj b/Example Project/Example Project.csproj similarity index 98% rename from TestApplication/TestApplication.csproj rename to Example Project/Example Project.csproj index f16bc2c..f522871 100644 --- a/TestApplication/TestApplication.csproj +++ b/Example Project/Example Project.csproj @@ -8,8 +8,8 @@ {5774D025-A1B8-409F-B613-A4453AF3EB90} Exe Properties - TestApplication - TestApplication + ExampleProject + Example Project v4.0 Client 512 diff --git a/TestApplication/Program.cs b/Example Project/Program.cs similarity index 98% rename from TestApplication/Program.cs rename to Example Project/Program.cs index 2c09f34..6753a1f 100644 --- a/TestApplication/Program.cs +++ b/Example Project/Program.cs @@ -8,7 +8,7 @@ using System.Reflection.Emit; using System.Linq.Expressions; -namespace TestApplication +namespace ExampleProject { /// /// An interface to derive from in Lua code. diff --git a/TestApplication/Properties/AssemblyInfo.cs b/Example Project/Properties/AssemblyInfo.cs similarity index 100% rename from TestApplication/Properties/AssemblyInfo.cs rename to Example Project/Properties/AssemblyInfo.cs diff --git a/TestApplication/Tests.lua b/Example Project/Tests.lua similarity index 100% rename from TestApplication/Tests.lua rename to Example Project/Tests.lua diff --git a/TestApplication/app.config b/Example Project/app.config similarity index 100% rename from TestApplication/app.config rename to Example Project/app.config diff --git a/ModMaker.Lua.sln b/ModMaker.Lua.sln index 5f2e2e3..f0e7343 100644 --- a/ModMaker.Lua.sln +++ b/ModMaker.Lua.sln @@ -10,7 +10,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution License.txt = License.txt EndProjectSection EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestApplication", "TestApplication\TestApplication.csproj", "{5774D025-A1B8-409F-B613-A4453AF3EB90}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Example Project", "Example Project\Example Project.csproj", "{5774D025-A1B8-409F-B613-A4453AF3EB90}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ModMaker.Lua.Portable", "ModMaker.Lua.Portable\ModMaker.Lua.Portable.csproj", "{468C290D-9818-4B53-A9EE-24D690733743}" EndProject @@ -18,7 +18,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ModMaker.Lua.Net", "ModMake EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ModMaker.Lua", "ModMaker.Lua\ModMaker.Lua.csproj", "{C8175F68-427C-45EE-B50B-2C9D8FB9FC51}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestProject", "TestProject\TestProject.csproj", "{F5F61680-1D99-4E55-AA7C-F3B24DCE862D}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Unit Tests", "Unit Tests\Unit Tests.csproj", "{F5F61680-1D99-4E55-AA7C-F3B24DCE862D}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/TestProject/Base/HelpersTest.cs b/Unit Tests/Base/HelpersTest.cs similarity index 99% rename from TestProject/Base/HelpersTest.cs rename to Unit Tests/Base/HelpersTest.cs index 58c7323..c6e4391 100644 --- a/TestProject/Base/HelpersTest.cs +++ b/Unit Tests/Base/HelpersTest.cs @@ -3,7 +3,7 @@ using ModMaker.Lua; using ModMaker.Lua.Runtime; -namespace TestProject.Base +namespace UnitTests.Base { /// /// This is a test class for the ModMaker.Lua.Helpers class. diff --git a/TestProject/Base/PlainParserTest.cs b/Unit Tests/Base/PlainParserTest.cs similarity index 99% rename from TestProject/Base/PlainParserTest.cs rename to Unit Tests/Base/PlainParserTest.cs index f50a8e6..06de929 100644 --- a/TestProject/Base/PlainParserTest.cs +++ b/Unit Tests/Base/PlainParserTest.cs @@ -5,7 +5,7 @@ using System.Collections.Generic; using ModMaker.Lua.Parser.Items; -namespace TestProject +namespace UnitTests.Base { /// /// This is a test class for PlainParserTest and is intended diff --git a/TestProject/Base/TokenizerTest.cs b/Unit Tests/Base/TokenizerTest.cs similarity index 99% rename from TestProject/Base/TokenizerTest.cs rename to Unit Tests/Base/TokenizerTest.cs index cfb2357..0e8ffff 100644 --- a/TestProject/Base/TokenizerTest.cs +++ b/Unit Tests/Base/TokenizerTest.cs @@ -3,7 +3,7 @@ using System; using System.Globalization; -namespace TestProject +namespace UnitTests.Base { /// ///This is a test class for TokenizerTest and is intended diff --git a/TestProject/Net/LuaRuntimeTest.cs b/Unit Tests/Net/LuaRuntimeTest.cs similarity index 99% rename from TestProject/Net/LuaRuntimeTest.cs rename to Unit Tests/Net/LuaRuntimeTest.cs index 6ec454b..545fd4d 100644 --- a/TestProject/Net/LuaRuntimeTest.cs +++ b/Unit Tests/Net/LuaRuntimeTest.cs @@ -9,7 +9,7 @@ using ModMaker.Lua; using System.Collections.Generic; -namespace TestProject +namespace UnitTests.Net { // TODO: Fix tests. diff --git a/TestProject/Properties/AssemblyInfo.cs b/Unit Tests/Properties/AssemblyInfo.cs similarity index 100% rename from TestProject/Properties/AssemblyInfo.cs rename to Unit Tests/Properties/AssemblyInfo.cs diff --git a/TestProject/TestProject.csproj b/Unit Tests/Unit Tests.csproj similarity index 97% rename from TestProject/TestProject.csproj rename to Unit Tests/Unit Tests.csproj index f06b061..f096633 100644 --- a/TestProject/TestProject.csproj +++ b/Unit Tests/Unit Tests.csproj @@ -9,8 +9,8 @@ {F5F61680-1D99-4E55-AA7C-F3B24DCE862D} Library Properties - TestProject - TestProject + UnitTests + Unit Tests v4.0 512 {3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}