Skip to content

Commit

Permalink
Renamed TestApplication and TestProject.
Browse files Browse the repository at this point in the history
These names were ambiguous and confusing.  So I renamed them to
'Example Project' and 'Unit Tests' respectively.
  • Loading branch information
TheModMaker committed Apr 6, 2016
1 parent 10e9a84 commit 711392a
Show file tree
Hide file tree
Showing 12 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
<ProjectGuid>{5774D025-A1B8-409F-B613-A4453AF3EB90}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>TestApplication</RootNamespace>
<AssemblyName>TestApplication</AssemblyName>
<RootNamespace>ExampleProject</RootNamespace>
<AssemblyName>Example Project</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
<FileAlignment>512</FileAlignment>
Expand Down
2 changes: 1 addition & 1 deletion TestApplication/Program.cs → Example Project/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using System.Reflection.Emit;
using System.Linq.Expressions;

namespace TestApplication
namespace ExampleProject
{
/// <summary>
/// An interface to derive from in Lua code.
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions ModMaker.Lua.sln
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ 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
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ModMaker.Lua.Net", "ModMaker.Lua.Net\ModMaker.Lua.Net.csproj", "{8F655E4A-3CE1-4A8B-B641-BF7A12FFB295}"
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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using ModMaker.Lua;
using ModMaker.Lua.Runtime;

namespace TestProject.Base
namespace UnitTests.Base
{
/// <summary>
/// This is a test class for the ModMaker.Lua.Helpers class.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Collections.Generic;
using ModMaker.Lua.Parser.Items;

namespace TestProject
namespace UnitTests.Base
{
/// <summary>
/// This is a test class for PlainParserTest and is intended
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System;
using System.Globalization;

namespace TestProject
namespace UnitTests.Base
{
/// <summary>
///This is a test class for TokenizerTest and is intended
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
using ModMaker.Lua;
using System.Collections.Generic;

namespace TestProject
namespace UnitTests.Net
{
// TODO: Fix tests.

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
<ProjectGuid>{F5F61680-1D99-4E55-AA7C-F3B24DCE862D}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>TestProject</RootNamespace>
<AssemblyName>TestProject</AssemblyName>
<RootNamespace>UnitTests</RootNamespace>
<AssemblyName>Unit Tests</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
Expand Down

0 comments on commit 711392a

Please sign in to comment.