Skip to content

Instantly share code, notes, and snippets.

@ultimate-qa2
Created March 28, 2021 13:54
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 ultimate-qa2/baec7cb1a52cefa8749f684c50c17038 to your computer and use it in GitHub Desktop.
Save ultimate-qa2/baec7cb1a52cefa8749f684c50c17038 to your computer and use it in GitHub Desktop.
@Test
public void bmi() {
double weight = 55;
double height = 1.65;
double bmi = weight / (height * height);
Assert.assertTrue(bmi >= 18.5 && bmi <=25.9);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment