This commit is contained in:
jannis 2019-08-25 13:16:26 +02:00
parent 744f4389d6
commit 2ad3ca4880
2 changed files with 22 additions and 36 deletions

View File

@ -0,0 +1,22 @@
package de.tadris.fitness;
import org.junit.Assert;
import org.junit.Test;
import de.tadris.fitness.data.Workout;
import de.tadris.fitness.util.CalorieCalculator;
public class CalorieCalculatorTest {
@Test
public void testCalculation(){
Workout workout= new Workout();
workout.avgSpeed= 2.7d;
workout.workoutType= Workout.WORKOUT_TYPE_RUNNING;
workout.duration= 1000L * 60 * 10;
int calorie= CalorieCalculator.calculateCalories(workout, 80);
System.out.println("Calories: " + calorie);
Assert.assertEquals(120, calorie, 50);
}
}

View File

@ -1,36 +0,0 @@
/*
* Copyright (c) 2019 Jannis Scheibe <jannis@tadris.de>
*
* This file is part of FitoTrack
*
* FitoTrack is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* FitoTrack is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package de.tadris.fitness;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
/**
* Example local unit test, which will execute on the development machine (host).
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
public class ExampleUnitTest {
@Test
public void addition_isCorrect() {
assertEquals(4, 2 + 2);
}
}