Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
kburnell committed Aug 30, 2012
1 parent 1561d4a commit afa0d1d
Show file tree
Hide file tree
Showing 50 changed files with 60 additions and 80 deletions.
12 changes: 8 additions & 4 deletions Calculator_Begin/Calculator.Console/Calculator.Console.csproj
Expand Up @@ -11,10 +11,14 @@
<AssemblyName>Calculator.Console</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<SccProjectName>SAK</SccProjectName>
<SccLocalPath>SAK</SccLocalPath>
<SccAuxPath>SAK</SccAuxPath>
<SccProvider>SAK</SccProvider>
<SccProjectName>
</SccProjectName>
<SccLocalPath>
</SccLocalPath>
<SccAuxPath>
</SccAuxPath>
<SccProvider>
</SccProvider>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
Expand Down
10 changes: 1 addition & 9 deletions Calculator_Begin/Calculator.Console/Program.cs
Expand Up @@ -7,14 +7,6 @@ class Program {
private static decimal _value2;
private static CalculatorService _calculatorService;

static void Main(string[] args) {
_calculatorService = new CalculatorService();
System.Console.Write("Value 1: ");
_value1 = decimal.Parse(System.Console.ReadLine());
System.Console.Write("Value 2: ");
_value2 = decimal.Parse(System.Console.ReadLine());
System.Console.WriteLine("Calculated Value: " + _calculatorService.Add(_value1, _value2));
System.Console.ReadKey();
}
static void Main(string[] args) {}
}
}
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Expand Up @@ -17,3 +17,8 @@ D:\Dev\Presentations\TDD\TestDriving.NET\Calculator\Calculator.Console\obj\Debug
D:\Dev\Presentations\TDD\TestDriving.NET\Calculator_Begin\Calculator.Console\bin\Debug\Calculator.Console.exe.config
D:\Dev\Presentations\TDD\TestDriving.NET\Calculator_Begin\Calculator.Console\obj\Debug\Calculator.Console.exe
D:\Dev\Presentations\TDD\TestDriving.NET\Calculator_Begin\Calculator.Console\obj\Debug\Calculator.Console.pdb
D:\Dev\Presentations\TDD\TestDriving.NET\Calculator_Begin\Calculator.Console\bin\Debug\Calculator.Console.exe
D:\Dev\Presentations\TDD\TestDriving.NET\Calculator_Begin\Calculator.Console\bin\Debug\Calculator.Console.pdb
D:\Dev\Presentations\TDD\TestDriving.NET\Calculator_Begin\Calculator.Console\bin\Debug\Calculator.Service.dll
D:\Dev\Presentations\TDD\TestDriving.NET\Calculator_Begin\Calculator.Console\bin\Debug\Calculator.Service.pdb
D:\Dev\Presentations\TDD\TestDriving.NET\Calculator_Begin\Calculator.Console\obj\Debug\Calculator.Console.csprojResolveAssemblyReference.cache
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Expand Up @@ -12,10 +12,14 @@
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<TestProjectType>UnitTest</TestProjectType>
<SccProjectName>SAK</SccProjectName>
<SccLocalPath>SAK</SccLocalPath>
<SccAuxPath>SAK</SccAuxPath>
<SccProvider>SAK</SccProvider>
<SccProjectName>
</SccProjectName>
<SccLocalPath>
</SccLocalPath>
<SccAuxPath>
</SccAuxPath>
<SccProvider>
</SccProvider>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand Down Expand Up @@ -59,6 +63,9 @@
<Name>Calculator.Service</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Folder Include="Fakes\" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
Expand Down
Expand Up @@ -4,13 +4,6 @@ namespace Calculator.Service.Tests.Unit {

[TestClass]
public class CalculatorServiceTest {

#region << Setup/Teardown >>

#endregion

#region << Add Tests >>

#endregion

}
}
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Expand Up @@ -12,3 +12,10 @@ D:\Dev\Presentations\TDD\TestDriving.NET\Calculator\Calculator.Service.Tests.Uni
D:\Dev\Presentations\TDD\TestDriving.NET\Calculator\Calculator.Service.Tests.Unit\obj\Debug\Calculator.Service.Tests.Unit.csprojResolveAssemblyReference.cache
D:\Dev\Presentations\TDD\TestDriving.NET\Calculator\Calculator.Service.Tests.Unit\obj\Debug\Calculator.Service.Tests.Unit.dll
D:\Dev\Presentations\TDD\TestDriving.NET\Calculator\Calculator.Service.Tests.Unit\obj\Debug\Calculator.Service.Tests.Unit.pdb
D:\Dev\Presentations\TDD\TestDriving.NET\Calculator_Begin\Calculator.Service.Tests.Unit\bin\Debug\Calculator.Service.Tests.Unit.dll
D:\Dev\Presentations\TDD\TestDriving.NET\Calculator_Begin\Calculator.Service.Tests.Unit\bin\Debug\Calculator.Service.Tests.Unit.pdb
D:\Dev\Presentations\TDD\TestDriving.NET\Calculator_Begin\Calculator.Service.Tests.Unit\bin\Debug\Calculator.Service.dll
D:\Dev\Presentations\TDD\TestDriving.NET\Calculator_Begin\Calculator.Service.Tests.Unit\bin\Debug\Calculator.Service.pdb
D:\Dev\Presentations\TDD\TestDriving.NET\Calculator_Begin\Calculator.Service.Tests.Unit\obj\Debug\Calculator.Service.Tests.Unit.csprojResolveAssemblyReference.cache
D:\Dev\Presentations\TDD\TestDriving.NET\Calculator_Begin\Calculator.Service.Tests.Unit\obj\Debug\Calculator.Service.Tests.Unit.dll
D:\Dev\Presentations\TDD\TestDriving.NET\Calculator_Begin\Calculator.Service.Tests.Unit\obj\Debug\Calculator.Service.Tests.Unit.pdb
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
12 changes: 8 additions & 4 deletions Calculator_Begin/Calculator.Service/Calculator.Service.csproj
Expand Up @@ -11,10 +11,14 @@
<AssemblyName>Calculator.Service</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<SccProjectName>SAK</SccProjectName>
<SccLocalPath>SAK</SccLocalPath>
<SccAuxPath>SAK</SccAuxPath>
<SccProvider>SAK</SccProvider>
<SccProjectName>
</SccProjectName>
<SccLocalPath>
</SccLocalPath>
<SccAuxPath>
</SccAuxPath>
<SccProvider>
</SccProvider>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand Down
22 changes: 0 additions & 22 deletions Calculator_Begin/Calculator.Service/CalculatorService.cs
Expand Up @@ -5,31 +5,9 @@ namespace Calculator.Service {

public class CalculatorService : ICalculatorService {

#region << Private Fields >>



#endregion

#region << Constructors >>



#endregion

#region << Public Properties >>



#endregion

#region << Public Methods >>

public decimal Add(decimal value1, decimal value2) {
throw new NotImplementedException("Add has not been implemented yet!");
}

#endregion

}
}
Binary file not shown.
Binary file not shown.
Expand Up @@ -8,3 +8,8 @@ D:\Dev\Presentations\TDD\TestDriving.NET\Calculator\Calculator.Service\bin\Debug
D:\Dev\Presentations\TDD\TestDriving.NET\Calculator\Calculator.Service\obj\Debug\Calculator.Service.csprojResolveAssemblyReference.cache
D:\Dev\Presentations\TDD\TestDriving.NET\Calculator\Calculator.Service\obj\Debug\Calculator.Service.dll
D:\Dev\Presentations\TDD\TestDriving.NET\Calculator\Calculator.Service\obj\Debug\Calculator.Service.pdb
D:\Dev\Presentations\TDD\TestDriving.NET\Calculator_Begin\Calculator.Service\bin\Debug\Calculator.Service.dll
D:\Dev\Presentations\TDD\TestDriving.NET\Calculator_Begin\Calculator.Service\bin\Debug\Calculator.Service.pdb
D:\Dev\Presentations\TDD\TestDriving.NET\Calculator_Begin\Calculator.Service\obj\Debug\Calculator.Service.csprojResolveAssemblyReference.cache
D:\Dev\Presentations\TDD\TestDriving.NET\Calculator_Begin\Calculator.Service\obj\Debug\Calculator.Service.dll
D:\Dev\Presentations\TDD\TestDriving.NET\Calculator_Begin\Calculator.Service\obj\Debug\Calculator.Service.pdb
Binary file not shown.
Binary file not shown.
Binary file not shown.
12 changes: 8 additions & 4 deletions Calculator_Begin/Calculator.Shared/Calculator.Shared.csproj
Expand Up @@ -11,10 +11,14 @@
<AssemblyName>Calculator.Shared</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<SccProjectName>SAK</SccProjectName>
<SccLocalPath>SAK</SccLocalPath>
<SccAuxPath>SAK</SccAuxPath>
<SccProvider>SAK</SccProvider>
<SccProjectName>
</SccProjectName>
<SccLocalPath>
</SccLocalPath>
<SccAuxPath>
</SccAuxPath>
<SccProvider>
</SccProvider>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified Calculator_Begin/Calculator.crunchsolution.cache
Binary file not shown.
31 changes: 6 additions & 25 deletions Calculator_Begin/Calculator.sln
@@ -1,6 +1,6 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 11
# Visual Studio 2012
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Calculator.Console", "Calculator.Console\Calculator.Console.csproj", "{24AD0AE4-41C8-4718-8F1E-E1C9159493D9}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{2A00B3C6-7478-4BC9-BE6B-E8B15C47F060}"
Expand All @@ -19,34 +19,11 @@ EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Calculator.Shared", "Calculator.Shared\Calculator.Shared.csproj", "{9F8D4B8E-D120-4C68-8DDB-93E16BAB03E6}"
EndProject
Global
GlobalSection(TeamFoundationVersionControl) = preSolution
SccEnterpriseProvider = {4CA58AB2-18FA-4F8D-95D4-32DDF27D184C}
SccLocalPath0 = .
SccLocalPath1 = Calculator.Console
SccLocalPath2 = Calculator.Service
SccLocalPath3 = Calculator.Service.Tests.Unit
SccLocalPath4 = Calculator.Shared
SccNumberOfProjects = 5
SccProjectName1 = Calculator.Console
SccProjectName2 = Calculator.Service
SccProjectName3 = Calculator.Service.Tests.Unit
SccProjectName4 = Calculator.Shared
SccProjectTopLevelParentUniqueName3 = Calculator.sln
SccProjectUniqueName1 = Calculator.Console\\Calculator.Console.csproj
SccProjectUniqueName2 = Calculator.Service\\Calculator.Service.csproj
SccProjectUniqueName3 = Calculator.Service.Tests.Unit\\Calculator.Service.Tests.Unit.csproj
SccProjectUniqueName4 = Calculator.Shared\\Calculator.Shared.csproj
SccTeamFoundationServer = https://keburnell.tfspreview.com/defaultcollection
EndGlobalSection
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{114E2651-2A30-439B-9234-B3B846F125D7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{114E2651-2A30-439B-9234-B3B846F125D7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{114E2651-2A30-439B-9234-B3B846F125D7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{114E2651-2A30-439B-9234-B3B846F125D7}.Release|Any CPU.Build.0 = Release|Any CPU
{24AD0AE4-41C8-4718-8F1E-E1C9159493D9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{24AD0AE4-41C8-4718-8F1E-E1C9159493D9}.Debug|Any CPU.Build.0 = Debug|Any CPU
{24AD0AE4-41C8-4718-8F1E-E1C9159493D9}.Release|Any CPU.ActiveCfg = Release|Any CPU
Expand All @@ -55,6 +32,10 @@ Global
{3EE435D5-3CE0-47DE-BEFB-30B95E9B3845}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3EE435D5-3CE0-47DE-BEFB-30B95E9B3845}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3EE435D5-3CE0-47DE-BEFB-30B95E9B3845}.Release|Any CPU.Build.0 = Release|Any CPU
{114E2651-2A30-439B-9234-B3B846F125D7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{114E2651-2A30-439B-9234-B3B846F125D7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{114E2651-2A30-439B-9234-B3B846F125D7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{114E2651-2A30-439B-9234-B3B846F125D7}.Release|Any CPU.Build.0 = Release|Any CPU
{9F8D4B8E-D120-4C68-8DDB-93E16BAB03E6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9F8D4B8E-D120-4C68-8DDB-93E16BAB03E6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9F8D4B8E-D120-4C68-8DDB-93E16BAB03E6}.Release|Any CPU.ActiveCfg = Release|Any CPU
Expand All @@ -64,7 +45,7 @@ Global
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{114E2651-2A30-439B-9234-B3B846F125D7} = {82329C5E-AA12-4662-840C-68F2449CB537}
{82329C5E-AA12-4662-840C-68F2449CB537} = {2A00B3C6-7478-4BC9-BE6B-E8B15C47F060}
{114E2651-2A30-439B-9234-B3B846F125D7} = {82329C5E-AA12-4662-840C-68F2449CB537}
EndGlobalSection
EndGlobal
Binary file modified Calculator_Begin/Calculator.v11.suo
Binary file not shown.

0 comments on commit afa0d1d

Please sign in to comment.