info.novatec.testit.livingdoc.samples.application.calculator.Division Maven / Gradle / Ivy
/**
* $Archive: $
*
* Copyright 2005 (C) Pyxis Technologies Inc. All Rights Reserved.
*
* This software is the confidential and proprietary information of Pyxis
* Technologies inc. ("Confidential Information"). You shall not disclose such
* Confidential Information and shall use it only in accordance with the terms
* of the license agreement you entered into with Pyxis Technologies.
*
* http://www.pyxis-tech.com
*/
package info.novatec.testit.livingdoc.samples.application.calculator;
/**
* Demo SUT Application.
*/
public class Division {
public double dividend;
public double divisor;
public double quotient() {
return dividend / divisor;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy