blob: f8b32dcd2868d528b303a7e022ae659cc5dbd1c6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 Oracle. 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.
*
* Contributors:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.common.utility.tests.internal;
import org.eclipse.jpt.common.utility.Command;
import org.eclipse.jpt.common.utility.internal.AsynchronousCommandExecutor;
import org.eclipse.jpt.common.utility.internal.StatefulCommandExecutor;
public class AsynchronousCommandExecutorTests
extends MultiThreadedTestCase
{
public AsynchronousCommandExecutorTests(String name) {
super(name);
}
public void testExecution() throws Exception {
TestCommand command = new TestCommand();
StatefulCommandExecutor commandExecutor = new AsynchronousCommandExecutor(this.buildThreadFactory());
commandExecutor.start();
commandExecutor.execute(command);
commandExecutor.execute(command);
commandExecutor.execute(command);
Thread.sleep(TWO_TICKS); // wait for the command to execute
commandExecutor.stop();
assertEquals(3, command.count);
}
static class TestCommand implements Command {
int count = 0;
public void execute() {
this.count++;
}
}
}