blob: 9295c523c8d8435bdd3f48374a8556b1ca8efe13 [file] [log] [blame]
/*
* Copyright (c) 2011 Google Inc.
*
* All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse
* Public License v1.0 which accompanies this distribution, and is available at
*
* http://www.eclipse.org/legal/epl-v10.html
*/
package com.google.eclipse.protobuf.model.util;
import static org.junit.Assert.*;
import static org.mockito.Mockito.*;
import org.eclipse.xtext.nodemodel.*;
import org.junit.*;
/**
* Tests for <code>{@link INodes#isHiddenLeafNode(INode)}</code>
*
* @author alruiz@google.com (Alex Ruiz)
*/
public class INodes_isHiddenLeafNode_Test {
private INodes nodes;
@Before public void setUp() {
nodes = new INodes();
}
@Test public void should_return_true_if_given_node_is_an_ILeafNode_and_is_hidden() {
ILeafNode node = mock(ILeafNode.class);
when(node.isHidden()).thenReturn(true);
assertTrue(nodes.isHiddenLeafNode(node));
}
@Test public void should_return_false_if_given_node_is_an_ILeafNode_but_is_not_hidden() {
ILeafNode node = mock(ILeafNode.class);
when(node.isHidden()).thenReturn(false);
assertFalse(nodes.isHiddenLeafNode(node));
}
@Test public void should_return_false_if_given_node_is_not_an_ILeafNode() {
INode node = mock(INode.class);
assertFalse(nodes.isHiddenLeafNode(node));
}
}