| 2 | |
| 3 | |
| 4 | public class ADTFractionApp { |
| 5 | |
| 6 | /** |
| 7 | * @param args the command line arguments |
| 8 | */ |
| 9 | public static void main(String[] args) { |
| 10 | ADTFraction f1=new ADTFraction(3,5); |
| 11 | f1.display(); |
| 12 | ADTFraction f2=new ADTFraction(7,8); |
| 13 | f2.display(); |
| 14 | } |
| 15 | |
| 16 | } |
| 17 | |
| 18 | |
| 19 | class ADTFraction { |
nothing calls this directly
no outgoing calls
no test coverage detected