Skip to content

Commit

Permalink
Correcting typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jbandi committed Jun 3, 2010
1 parent 2391181 commit 8d4f4a3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions Tests/RuntimeTests/StepExecutionTestsWithConversions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public virtual void DoubleArgWithTable(double param, Table table)
public class StepExecutionTestsWithConversions : StepExecutionTestsBase
{
[Test]
public void SholdCallBindingWithSimpleConvertParam()
public void ShouldCallBindingWithSimpleConvertParam()
{
StepExecutionTestsBindings bindingInstance;
TestRunner testRunner = GetTestRunnerFor(out bindingInstance);
Expand All @@ -52,7 +52,7 @@ public void SholdCallBindingWithSimpleConvertParam()
}

[Test]
public void SholdRaiseErrorIfSimpleConvertParamFails()
public void ShouldRaiseErrorIfSimpleConvertParamFails()
{
StepExecutionTestsBindings bindingInstance;
TestRunner testRunner = GetTestRunnerFor(out bindingInstance);
Expand All @@ -66,7 +66,7 @@ public void SholdRaiseErrorIfSimpleConvertParamFails()
}

[Test]
public void SholdCallTheOnlyThatCanConvert()
public void ShouldCallTheOnlyThatCanConvert()
{
var converter = MockRepository.Stub<IStepArgumentTypeConverter>();
ObjectContainer.StepArgumentTypeConverter = converter;
Expand All @@ -91,7 +91,7 @@ public void SholdCallTheOnlyThatCanConvert()
}

[Test]
public void SholdRaiseAmbiguousIfMultipleCanConvert()
public void ShouldRaiseAmbiguousIfMultipleCanConvert()
{
var converter = MockRepository.Stub<IStepArgumentTypeConverter>();
ObjectContainer.StepArgumentTypeConverter = converter;
Expand All @@ -114,7 +114,7 @@ public void SholdRaiseAmbiguousIfMultipleCanConvert()
}

[Test]
public void SholdCallTheOnlyThatCanConvertWithTable()
public void ShouldCallTheOnlyThatCanConvertWithTable()
{
var converter = MockRepository.Stub<IStepArgumentTypeConverter>();
ObjectContainer.StepArgumentTypeConverter = converter;
Expand All @@ -141,7 +141,7 @@ public void SholdCallTheOnlyThatCanConvertWithTable()
}

[Test]
public void SholdRaiseParamErrorIfNoneCanConvert()
public void ShouldRaiseParamErrorIfNoneCanConvert()
{
var converter = MockRepository.Stub<IStepArgumentTypeConverter>();
ObjectContainer.StepArgumentTypeConverter = converter;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ protected override CultureInfo GetLanguage()
}

[Test]
public void SholdCallBindingWithSimpleConvertParam()
public void ShouldCallBindingWithSimpleConvertParam()
{
StepExecutionTestsBindings bindingInstance;
TestRunner testRunner = GetTestRunnerFor(out bindingInstance);
Expand Down

0 comments on commit 8d4f4a3

Please sign in to comment.