Add some more units for testing

This commit is contained in:
Thomas Roehl 2022-03-11 20:10:06 +01:00
parent 9728f171c3
commit cccd264881

View File

@ -60,6 +60,10 @@ func TestUnitsExact(t *testing.T) {
{"secs", NewUnit("seconds")},
{"RPM", NewUnit("rpm")},
{"rPm", NewUnit("rpm")},
{"watt/byte", NewUnit("W/B")},
{"watts/bytes", NewUnit("W/B")},
{"flop/byte", NewUnit("flops/Bytes")},
{"F/B", NewUnit("flops/Bytes")},
}
compareUnitExact := func(in, out Unit) bool {
if in.getMeasure() == out.getMeasure() && in.getDivMeasure() == out.getDivMeasure() && in.getPrefix() == out.getPrefix() {