Package net.sf.latexdraw.parsers.ps

Examples of net.sf.latexdraw.parsers.ps.PSFunctionParser


public class TestPSFunctionParser {
  @SuppressWarnings("unused")
  @Test(expected=IllegalArgumentException.class)
  public void testPSFunctionParserNull() throws InvalidFormatPSFunctionException {
    new PSFunctionParser(null);
  }
View Full Code Here


  }

  @SuppressWarnings("unused")
  @Test(expected=IllegalArgumentException.class)
  public void testPSFunctionParserEmpty() throws InvalidFormatPSFunctionException {
    new PSFunctionParser(""); //$NON-NLS-1$
  }
View Full Code Here

  }

  @SuppressWarnings("unused")
  @Test(expected=InvalidFormatPSFunctionException.class)
  public void testPSFunctionParserInvalid1() throws InvalidFormatPSFunctionException {
    new PSFunctionParser("Y"); //$NON-NLS-1$
  }
View Full Code Here

    new PSFunctionParser("Y"); //$NON-NLS-1$
  }

  @SuppressWarnings("unused") @Test
  public void testPSFunctionParserSinOk() throws InvalidFormatPSFunctionException {
    new PSFunctionParser("sin"); //$NON-NLS-1$
  }
View Full Code Here

    new PSFunctionParser("sin"); //$NON-NLS-1$
  }

  @SuppressWarnings("unused") @Test
  public void testPSFunctionParserCosOk() throws InvalidFormatPSFunctionException {
    new PSFunctionParser("cos"); //$NON-NLS-1$
  }
View Full Code Here

    new PSFunctionParser("cos"); //$NON-NLS-1$
  }

  @SuppressWarnings("unused") @Test
  public void testPSFunctionParserAddOk() throws InvalidFormatPSFunctionException {
    new PSFunctionParser("add"); //$NON-NLS-1$
  }
View Full Code Here

    new PSFunctionParser("add"); //$NON-NLS-1$
  }

  @SuppressWarnings("unused") @Test
  public void testPSFunctionParserModOk() throws InvalidFormatPSFunctionException {
    new PSFunctionParser("mod"); //$NON-NLS-1$
  }
View Full Code Here

    new PSFunctionParser("mod"); //$NON-NLS-1$
  }

  @SuppressWarnings("unused") @Test
  public void testPSFunctionParserMulOk() throws InvalidFormatPSFunctionException {
    new PSFunctionParser("mul"); //$NON-NLS-1$
  }
View Full Code Here

    new PSFunctionParser("mul"); //$NON-NLS-1$
  }

  @SuppressWarnings("unused") @Test
  public void testPSFunctionParserAbsOk() throws InvalidFormatPSFunctionException {
    new PSFunctionParser("abs"); //$NON-NLS-1$
  }
View Full Code Here

    new PSFunctionParser("abs"); //$NON-NLS-1$
  }

  @SuppressWarnings("unused") @Test
  public void testPSFunctionParserCeilingOk() throws InvalidFormatPSFunctionException {
    new PSFunctionParser("ceiling"); //$NON-NLS-1$
  }
View Full Code Here

TOP

Related Classes of net.sf.latexdraw.parsers.ps.PSFunctionParser

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.