Skip to content

Commit

Permalink
Add main para prueba
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielaTh committed Nov 28, 2015
1 parent 03a39e8 commit 07fc268
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/Entities/Equipment/Main.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
package Entities.Equipment;

import Exceptions.AssociateEquipmentError;

public class Main {

public static void main(String[] args) throws AssociateEquipmentError {
// TODO Auto-generated method stub

Hub h = new Hub(9);
Hub h1 = new Hub(10);
h.associateEquipment(h1);

System.out.println("OK");

}

}

0 comments on commit 07fc268

Please sign in to comment.