*/
public void testShortcut() {
ConcreteMenuItem item = MenuModelHelper.createMenuItem(itemName);
// Test getting a null prompt
TextAssetReference testShortcut = item.getShortcut();
assertNull("Should be no prompt", testShortcut);
// Test setting a prompt
String shortcut = "Shortcut Object";
item.setShortcut(new LiteralTextAssetReference(shortcut));
// Test getting a non-null prompt
testShortcut = item.getShortcut();
assertNotNull("Should be a prompt", testShortcut);
assertEquals("Prompts should be the same", shortcut,
testShortcut.getText(TextEncoding.PLAIN));
}