|
19 | 19 | public class ConversionTests : AbstractTestCase { |
20 | 20 | public ConversionTests () { |
21 | 21 | base ("Conversion") ; |
22 | | - add_test ("[Angle] Degree to MOA", test_degree_to_moa) ; |
23 | | - add_test ("[Angle] Degree to Radian", test_degree_to_radian) ; |
24 | | - add_test ("[Angle] Radian to Degree", test_radian_to_degree) ; |
25 | | - add_test ("[Angle] Radian to MOA", test_radian_to_moa) ; |
26 | | - add_test ("[Angle] MOA to Degree", test_moa_to_degree) ; |
27 | | - add_test ("[Angle] MOA to Radian", test_moa_to_radian) ; |
28 | | - |
29 | | - add_test ("[Mass] Grain to Pound", test_grain_to_pound) ; |
30 | | - add_test ("[Mass] Grain to Ounce", test_grain_to_ounce) ; |
31 | | - add_test ("[Mass] Grain to Miligram", test_grain_to_miligram) ; |
32 | | - add_test ("[Mass] Miligram to Grain", test_miligram_to_grain) ; |
33 | | - add_test ("[Mass] Miligram to Pound", test_miligram_to_pound) ; |
34 | | - add_test ("[Mass] Miligram to Ounce", test_miligram_to_ounce) ; |
35 | | - add_test ("[Mass] Pound to Grain", test_pound_to_grain) ; |
36 | | - add_test ("[Mass] Pound to Miligram", test_pound_to_miligram) ; |
37 | | - add_test ("[Mass] Pound to Ounce", test_pound_to_ounce) ; |
38 | | - add_test ("[Mass] Ounce to Grain", test_ounce_to_grain) ; |
39 | | - add_test ("[Mass] Ounce to Miligram", test_ounce_to_miligram) ; |
40 | | - add_test ("[Mass] Ounce to Pound", test_ounce_to_pound) ; |
41 | | - |
42 | | - add_test ("[Temp] Fahrenheit to Kelvin", test_fahrenheit_to_kelvin) ; |
43 | | - add_test ("[Temp] Fahrenheit to Celsius", test_fahrenheit_to_celsius) ; |
44 | | - add_test ("[Temp] Fahrenheit to Rankine", test_fahrenheit_to_rankine) ; |
45 | | - add_test ("[Temp] Kelvin to Fahrenheit", test_kelvin_to_fahrenheit) ; |
46 | | - add_test ("[Temp] Kelvin to Celsius", test_kelvin_to_celsius) ; |
47 | | - add_test ("[Temp] Kelvin to Rankine", test_kelvin_to_rankine) ; |
48 | | - add_test ("[Temp] Celsius to Fahrenheit", test_celsius_to_fahrenheit) ; |
49 | | - add_test ("[Temp] Celsius to Kelvin", test_celsius_to_kelvin) ; |
50 | | - add_test ("[Temp] Celsius to Rankine", test_celsius_to_rankine) ; |
51 | | - add_test ("[Temp] Rankine to Fahrenheit", test_rankine_to_fahrenheit) ; |
52 | | - add_test ("[Temp] Rankine to Celsius", test_rankine_to_celsius) ; |
53 | | - add_test ("[Temp] Rankine to Kelvin", test_rankine_to_kelvin) ; |
| 22 | + add_test ("Angle Degree to MOA", test_degree_to_moa) ; |
| 23 | + add_test ("Angle Degree to Radian", test_degree_to_radian) ; |
| 24 | + add_test ("Angle Radian to Degree", test_radian_to_degree) ; |
| 25 | + add_test ("Angle Radian to MOA", test_radian_to_moa) ; |
| 26 | + add_test ("Angle MOA to Degree", test_moa_to_degree) ; |
| 27 | + add_test ("Angle MOA to Radian", test_moa_to_radian) ; |
| 28 | + |
| 29 | + add_test ("Mass Grain to Pound", test_grain_to_pound) ; |
| 30 | + add_test ("Mass Grain to Ounce", test_grain_to_ounce) ; |
| 31 | + add_test ("Mass Grain to Miligram", test_grain_to_miligram) ; |
| 32 | + add_test ("Mass Miligram to Grain", test_miligram_to_grain) ; |
| 33 | + add_test ("Mass Miligram to Pound", test_miligram_to_pound) ; |
| 34 | + add_test ("Mass Miligram to Ounce", test_miligram_to_ounce) ; |
| 35 | + add_test ("Mass Pound to Grain", test_pound_to_grain) ; |
| 36 | + add_test ("Mass Pound to Miligram", test_pound_to_miligram) ; |
| 37 | + add_test ("Mass Pound to Ounce", test_pound_to_ounce) ; |
| 38 | + add_test ("Mass Ounce to Grain", test_ounce_to_grain) ; |
| 39 | + add_test ("Mass Ounce to Miligram", test_ounce_to_miligram) ; |
| 40 | + add_test ("Mass Ounce to Pound", test_ounce_to_pound) ; |
| 41 | + |
| 42 | + add_test ("Temp Fahrenheit to Kelvin", test_fahrenheit_to_kelvin) ; |
| 43 | + add_test ("Temp Fahrenheit to Celsius", test_fahrenheit_to_celsius) ; |
| 44 | + add_test ("Temp Fahrenheit to Rankine", test_fahrenheit_to_rankine) ; |
| 45 | + add_test ("Temp Kelvin to Fahrenheit", test_kelvin_to_fahrenheit) ; |
| 46 | + add_test ("Temp Kelvin to Celsius", test_kelvin_to_celsius) ; |
| 47 | + add_test ("Temp Kelvin to Rankine", test_kelvin_to_rankine) ; |
| 48 | + add_test ("Temp Celsius to Fahrenheit", test_celsius_to_fahrenheit) ; |
| 49 | + add_test ("Temp Celsius to Kelvin", test_celsius_to_kelvin) ; |
| 50 | + add_test ("Temp Celsius to Rankine", test_celsius_to_rankine) ; |
| 51 | + add_test ("Temp Rankine to Fahrenheit", test_rankine_to_fahrenheit) ; |
| 52 | + add_test ("Temp Rankine to Celsius", test_rankine_to_celsius) ; |
| 53 | + add_test ("Temp Rankine to Kelvin", test_rankine_to_kelvin) ; |
54 | 54 | } |
55 | 55 |
|
56 | 56 | /* |
|
0 commit comments