Sha256: 4d507007459f4ad0df60447da8bdbdea1a9b4bedce72f939c095b7e347c1a9f8
Contents?: true
Size: 407 Bytes
Versions: 125
Compression:
Stored size: 407 Bytes
Contents
package org.embulk.plugin; import static org.junit.Assert.assertEquals; import org.junit.Test; public class TestPluginType { @Test public void testEquals() { PluginType type = new PluginType("a"); assertEquals(true, (type.equals(type))); assertEquals(true, (type.equals(new PluginType("a")))); assertEquals(false, (type.equals(new PluginType("b")))); } }
Version data entries
125 entries across 125 versions & 1 rubygems