Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add StandardFlow unit definition #17

Merged
merged 4 commits into from
Sep 30, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix build issue for UnitsNet.Tests
  • Loading branch information
GuillaumeLebeau committed Sep 30, 2020
commit f11963c5e30f29b5eb0c0bfdd0b9ac1212c65f5c
16 changes: 16 additions & 0 deletions UnitsNet.Tests/CustomCode/StandardFlowTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,21 @@ namespace UnitsNet.Tests.CustomCode
public class StandardFlowTests : StandardFlowTestsBase
{
// Override properties in base class here
protected override double StandardCubicCentimetersPerMinuteInOneStandardCubicMeterPerSecond => 6e7;
protected override double StandardCubicCentimetersPerSecondInOneStandardCubicMeterPerSecond => 1e6;
protected override double StandardCubicDecimetersPerMinuteInOneStandardCubicMeterPerSecond => 6e4;
protected override double StandardCubicFeetPerDayInOneStandardCubicMeterPerSecond => 3.0511872047366496e6;
protected override double StandardCubicFeetPerHourInOneStandardCubicMeterPerSecond => 1.271328001973604e5;
protected override double StandardCubicFeetPerMinuteInOneStandardCubicMeterPerSecond => 2.11888000328934e3;
protected override double StandardCubicFeetPerSecondInOneStandardCubicMeterPerSecond => 35.314666721489;
protected override double StandardCubicMetersPerDayInOneStandardCubicMeterPerSecond => 8.64e4;
protected override double StandardCubicMetersPerHourInOneStandardCubicMeterPerSecond => 3.6e3;
protected override double StandardCubicMetersPerMinuteInOneStandardCubicMeterPerSecond => 60;
protected override double StandardCubicMetersPerSecondInOneStandardCubicMeterPerSecond => 1;
protected override double StandardCubicMillimetersPerSecondInOneStandardCubicMeterPerSecond => 1e9;
protected override double StandardCubicYardsPerDayInOneStandardCubicMeterPerSecond => 1.1300693351e5;
protected override double StandardCubicYardsPerHourInOneStandardCubicMeterPerSecond => 4.708622229532e3;
protected override double StandardCubicYardsPerMinuteInOneStandardCubicMeterPerSecond => 78.477037158864;
protected override double StandardCubicYardsPerSecondInOneStandardCubicMeterPerSecond => 1.3079506193144;
}
}