()
| 9 | |
| 10 | public class MaterialTest { |
| 11 | @Test |
| 12 | public void getByName() { |
| 13 | for (Material material : Material.values()) { |
| 14 | assertThat(Material.getMaterial(material.toString()), is(material)); |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | @Test |
| 19 | public void getByNameNull() { |
nothing calls this directly
no test coverage detected