* .shared.neurons.Neuron#getType()}.
*/
@Test
public final void testGetType() {
Neuron n = new InputNeuron();
Neuron m = new OutputNeuron();
Neuron o = new HiddenNeuron();
assertEquals(n.getType(), NeuronType.INPUT);
assertEquals(m.getType(), NeuronType.OUTPUT);
assertEquals(o.getType(), NeuronType.HIDDEN);
}