We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 603f50e commit 21c2144Copy full SHA for 21c2144
src/test/java/org/usb4java/javax/RootHubInterfaceTest.java
@@ -129,6 +129,15 @@ public void testGetActiveSetting()
129
assertSame(this.iface, this.iface.getActiveSetting());
130
}
131
132
+ /**
133
+ * Tests the {@link RootHubInterface#getSetting(byte)} method.
134
+ */
135
+ @Test
136
+ public void testGetSetting()
137
+ {
138
+ assertSame(this.iface, this.iface.getSetting((byte) 0));
139
+ }
140
+
141
/**
142
* Tests the {@link RootHubInterface#containsSetting(byte)} method.
143
*/
0 commit comments