-
Notifications
You must be signed in to change notification settings - Fork 393
This closes anjdreas/UnitsNet#85 - add more units for energy. #86
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
Conversation
|
||
protected override double BritishThermalUnitsInOneJoule | ||
{ | ||
get { return 1/1055.05585262; } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you're kind of cheating here, since you basically just copied in the implementation into the test. The idea is to double check that you got it right, by looking up the correct answer for these particular conversions.
For example, I type this in google:
british termal units in 1 joule
I get 1 joule = 0.00094781712 british thermal units
, so I would put that number in here.
Same for values below.
Other than that, looks good to me. If you can just update the test values and make sure all tests run, I'll merge this in. Leave a comment after you are done so I am notified. Sorry for not getting to this sooner, it slipped my attention. Cheers |
…re not copied directly from the unit declaration json.
Thanks for your remarks, I pushed another commit with hopefully more appropriate values for the unit tests. |
Add more units for energy BritishThermalUnit Calorie (kilo) ElectronVolt FootPound Erg WattHour (kilo, mega, giga)
I just noticed, it says 'unknown' on author of your commits. Not a big deal, but you probably want to check your git config and make sure you have name and email configured. https://git-scm.com/book/en/v2/Getting-Started-First-Time-Git-Setup |
Actually, email is set, but it's missing your name, or you have explicitly set it to 'unknown'. |
I had to switch to a Windows machine (I am normally on OS X) to work on this project, and looks like I didn't configure it properly. Anyways, thanks for the merge, and thanks again for a great library. |
You welcome. I released the nuget yesterday in case you didn't notice. |
No description provided.