

package cib412.poo.relaciones;

public class TestAgregacion {
    
    
    public static void main(String[] args) {
        ParteA x = new ParteA(); ParteB y = new ParteB();
        Agregacion agr = new Agregacion(x,y);
    }
    
}
