public void testGetNodeTransferableForSingleNodeCut() throws Exception {
N node = new N();
Transferable t = DragDropUtilities.getNodeTransferable(node, NodeTransfer.DND_MOVE);
assertEquals("One call to cut", 1, node.cut);
assertEquals("No call to drag", 0, node.drag);
assertEquals("No call to copy", 0, node.copy);
assertNotNull("Call to convertor", last);
assertTrue("StringSelection got to ExClipboard convertor", last instanceof StringSelection);
}
DragDropUtilitiesTest.java 文件源码
java
阅读 33
收藏 0
点赞 0
评论 0
项目:incubator-netbeans
作者:
评论列表
文章目录