1
0
Fork 0
flutter_demo_energy/test/algorithms/heat_capacity_test.dart

13 lines
325 B
Dart
Raw Permalink Normal View History

2023-04-12 08:41:41 +02:00
import 'package:energy/algorithms/heat_capacity.dart';
2023-02-14 08:06:33 +01:00
import 'package:test/test.dart';
void main() {
group('Joule to', () {
test('red heat 1 kg Iron', () {
expect(kgIronThatCanBeHeatetUntilRed(340000), 1);
});
test('boil 1 l Water', () {
expect(literWaterThatCanBeBoiled(334400), 1);
});});
}