(String[] args)
| 16 | public class Main { |
| 17 | |
| 18 | public static void main(String[] args) { |
| 19 | Operacion operacion1 = new Operacion(); |
| 20 | |
| 21 | operacion1.crearOperacion(); |
| 22 | operacion1.sumar(); |
| 23 | operacion1.restar(); |
| 24 | operacion1.multiplicar(); |
| 25 | operacion1.dividir(); |
| 26 | } |
| 27 | } |
nothing calls this directly
no test coverage detected