8c2259329f8192e6a90c9afce470dde37cf8a854
[debian/openrocket] / core / test / net / sf / openrocket / util / enums / TestEnumName.java
1 package net.sf.openrocket.util.enums;
2
3 import net.sf.openrocket.rocketcomponent.Transition.Shape;
4
5 public class TestEnumName {
6         
7         private void testConstructor() {
8                 EnumName<Shape> name = new EnumName<Shape>(Shape.class);
9         }
10         
11 }