/* * Copyright (c) 2012, the Dart project authors. * * Licensed under the Eclipse Public License v1.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at * * http://www.eclipse.org/legal/epl-v10.html * * Unless required by applicable law or agreed to in writing, software distributed under the License * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express * or implied. See the License for the specific language governing permissions and limitations under * the License. */ package com.google.dart.engine.internal.index.operation; import com.google.dart.engine.EngineTestCase; import com.google.dart.engine.context.AnalysisContext; import com.google.dart.engine.index.IndexStore; import com.google.dart.engine.source.Source; import com.google.dart.engine.source.SourceContainer; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; public class RemoveSourcesOperationTest extends EngineTestCase { private IndexStore store = mock(IndexStore.class); private AnalysisContext context = mock(AnalysisContext.class); private SourceContainer container = mock(SourceContainer.class); public void test_getContainer() throws Exception { RemoveSourcesOperation operation = new RemoveSourcesOperation(store, context, container); assertSame(container, operation.getContainer()); } public void test_isQuery() throws Exception { RemoveSourcesOperation operation = new RemoveSourcesOperation(store, context, container); assertFalse(operation.isQuery()); } public void test_performOperation() throws Exception { RemoveSourcesOperation operation = new RemoveSourcesOperation(store, context, container); operation.performOperation(); verify(store).removeSources(context, container); } public void test_removeWhenSourceRemoved() throws Exception { RemoveSourcesOperation operation = new RemoveSourcesOperation(store, context, null); Source source = mock(Source.class); assertFalse(operation.removeWhenSourceRemoved(source)); } public void test_toString() throws Exception { RemoveSourcesOperation operation = new RemoveSourcesOperation(store, context, container); when(container.toString()).thenReturn("mySourceContainer"); assertEquals("RemoveSources(mySourceContainer)", operation.toString()); } }