1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
|
// Test long division operation.
// Copyright 2012 Red Hat, Inc.
// Written by Pavel Tisnovsky <ptisnovs@redhat.com>
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published
// by the Free Software Foundation, either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software Foundation
// Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307 USA
package gnu.testlet.java.lang.Long;
import gnu.testlet.Testlet;
import gnu.testlet.TestHarness;
/**
* Test long division operation.
*/
public class longDivide implements Testlet
{
/**
* Entry point to this test.
*/
public void test(TestHarness harness)
{
testDividePositiveByPositiveCase1(harness);
testDividePositiveByPositiveCase2(harness);
testDividePositiveByPositiveCase3(harness);
testDividePositiveByNegativeCase1(harness);
testDividePositiveByNegativeCase2(harness);
testDividePositiveByNegativeCase3(harness);
testDivideNegativeByPositiveCase1(harness);
testDivideNegativeByPositiveCase2(harness);
testDivideNegativeByPositiveCase3(harness);
testDivideNegativeByNegativeCase1(harness);
testDivideNegativeByNegativeCase2(harness);
testDivideNegativeByNegativeCase3(harness);
testDivideMaxValue(harness);
testDivideMinValue(harness);
testDivideByMaxValue(harness);
testDivideByMinValue(harness);
testDivideByZeroCase1(harness);
testDivideByZeroCase2(harness);
testDivideByZeroCase3(harness);
testDivideByZeroCase4(harness);
testDivideByZeroCase5(harness);
}
public void testDividePositiveByPositiveCase1(TestHarness harness)
{
long x = 10L;
long y = 2L;
long z = x / y;
harness.check(z == 5);
}
public void testDividePositiveByPositiveCase2(TestHarness harness)
{
long x = 10L;
long y = 3L;
long z = x / y;
harness.check(z == 3);
}
public void testDividePositiveByPositiveCase3(TestHarness harness)
{
long x = 11L;
long y = 3L;
long z = x / y;
harness.check(z == 3);
}
public void testDividePositiveByNegativeCase1(TestHarness harness)
{
long x = 10L;
long y = -2L;
long z = x / y;
harness.check(z == -5);
}
public void testDividePositiveByNegativeCase2(TestHarness harness)
{
long x = 10L;
long y = -3L;
long z = x / y;
harness.check(z == -3);
}
public void testDividePositiveByNegativeCase3(TestHarness harness)
{
long x = 11L;
long y = -3L;
long z = x / y;
harness.check(z == -3);
}
public void testDivideNegativeByPositiveCase1(TestHarness harness)
{
long x = -10L;
long y = 2L;
long z = x / y;
harness.check(z == -5);
}
public void testDivideNegativeByPositiveCase2(TestHarness harness)
{
long x = -10L;
long y = 3L;
long z = x / y;
harness.check(z == -3);
}
public void testDivideNegativeByPositiveCase3(TestHarness harness)
{
long x = -11L;
long y = 3L;
long z = x / y;
harness.check(z == -3);
}
public void testDivideNegativeByNegativeCase1(TestHarness harness)
{
long x = -10L;
long y = -2L;
long z = x / y;
harness.check(z == 5);
}
public void testDivideNegativeByNegativeCase2(TestHarness harness)
{
long x = -10L;
long y = -3L;
long z = x / y;
harness.check(z == 3);
}
public void testDivideNegativeByNegativeCase3(TestHarness harness)
{
long x = -11L;
long y = -3L;
long z = x / y;
harness.check(z == 3);
}
public void testDivideMaxValue(TestHarness harness)
{
long x = Integer.MAX_VALUE;
long y = 2 << 15L;
long z = x / y;
harness.check(z == 32767);
}
public void testDivideMinValue(TestHarness harness)
{
long x = Integer.MIN_VALUE;
long y = 2 << 15L;
long z = x / y;
harness.check(z == -32768);
}
public void testDivideByMaxValue(TestHarness harness)
{
long x = Integer.MAX_VALUE;
long y = Integer.MAX_VALUE;
long z = x / y;
harness.check(z == 1);
}
public void testDivideByMinValue(TestHarness harness)
{
long x = Integer.MIN_VALUE;
long y = Integer.MIN_VALUE;
long z = x / y;
harness.check(z == 1);
}
public void testDivideByZeroCase1(TestHarness harness)
{
long x = 1L;
long y = 0L;
try {
long z = x / y;
harness.check(false);
}
catch(ArithmeticException e) {
harness.check(true);
}
}
public void testDivideByZeroCase2(TestHarness harness)
{
long x = -1L;
long y = 0L;
try {
long z = x / y;
harness.check(false);
}
catch(ArithmeticException e) {
harness.check(true);
}
}
public void testDivideByZeroCase3(TestHarness harness)
{
long x = Integer.MAX_VALUE;
long y = 0L;
try {
long z = x / y;
harness.check(false);
}
catch(ArithmeticException e) {
harness.check(true);
}
}
public void testDivideByZeroCase4(TestHarness harness)
{
long x = Integer.MIN_VALUE;
long y = 0L;
try {
long z = x / y;
harness.check(false);
}
catch(ArithmeticException e) {
harness.check(true);
}
}
public void testDivideByZeroCase5(TestHarness harness)
{
long x = 0L;
long y = 0L;
try {
long z = x / y;
harness.check(false);
}
catch(ArithmeticException e) {
harness.check(true);
}
}
}
|