Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save angelovstanton/c27d8a6380d0ddee7b35405784ec4b94 to your computer and use it in GitHub Desktop.
Save angelovstanton/c27d8a6380d0ddee7b35405784ec4b94 to your computer and use it in GitHub Desktop.
[Binding]
public class ConvertMetricsForNuclearScienceStepsRegularExpressions
{
[When(@"I navigate to Metric Conversions")]
public void WhenINavigateToMetricConversions_()
{
ScenarioContext.Current.Pending();
}
[When(@"navigate to Energy and power section")]
public void WhenNavigateToEnergyAndPowerSection()
{
ScenarioContext.Current.Pending();
}
[When(@"navigate to Kilowatt-hours")]
public void WhenNavigateToKilowatt_Hours()
{
ScenarioContext.Current.Pending();
}
[When(@"choose conversions to Newton-meters")]
public void WhenChooseConversionsToNewton_Meters()
{
ScenarioContext.Current.Pending();
}
[When(@"type (.*) kWh")]
public void WhenTypeKWh(int p0)
{
ScenarioContext.Current.Pending();
}
[Then(@"assert that (.*) Nm are displayed as answer")]
public void ThenAssertThatENmAreDisplayedAsAnswer(Decimal p0, int p1)
{
ScenarioContext.Current.Pending();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment