Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /* *******************************************************************
  2. * Copyright (c) 2003 Contributors.
  3. * All rights reserved.
  4. * This program and the accompanying materials are made available
  5. * under the terms of the Eclipse Public License v1.0
  6. * which accompanies this distribution and is available at
  7. * http://www.eclipse.org/legal/epl-v10.html
  8. *
  9. * Contributors:
  10. * Mik Kersten initial implementation
  11. * ******************************************************************/
  12. package org.aspectj.tools.ajdoc;
  13. import java.io.File;
  14. /**
  15. * @author Mik Kersten
  16. */
  17. public class SpacewarTestCase extends AjdocTestCase {
  18. private String[] dirs = {"spacewar","coordination"};
  19. protected void setUp() throws Exception {
  20. super.setUp();
  21. initialiseProject("spacewar");
  22. }
  23. public void testSimpleExample() {
  24. runAjdoc(dirs);
  25. }
  26. public void testPublicModeExample() {
  27. runAjdoc("public",dirs);
  28. }
  29. public void testPr134063() {
  30. String lstFile = "spacewar" + File.separatorChar + "demo.lst";
  31. runAjdoc("private",lstFile);
  32. }
  33. }