* Test method for {@link org.naturalcli.Command#isHidden()}.
* @throws InvalidSyntaxException
*/
@Test
public final void testIsHidden() throws InvalidSyntaxException {
assertTrue(new Command("marian is the best", ". Hello world", new NullCommandExecutor()).isHidden());
assertFalse(new Command("marian is the best", "Hello world", new NullCommandExecutor()).isHidden());
}