blob: 31de6950c0986f7313df66f268af29a59807892b [file] [log] [blame]
/*
* Copyright 2019 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.google.gwt.emultest.java.util;
import com.google.gwt.testing.TestUtils;
import java.util.Arrays;
/** Tests {@link Arrays} (incorrect) Float semantics. */
public class ArraysFloatSemanticsTest extends EmulTestBase {
public void testEquals() throws Exception {
// Semantics don't match JVM.
if (TestUtils.isJvm()) {
return;
}
// Should be assertFalse(Arrays.equals(new Float[] {-0.0f}, new Float[] {0.0f}));
assertTrue(Arrays.equals(new Float[] {-0.0f}, new Float[] {0.0f}));
// Should be assertTrue(Arrays.equals(new Float[] {Float.NaN}, new Float[] {Float.NaN}));
assertFalse(Arrays.equals(new Float[] {Float.NaN}, new Float[] {Float.NaN}));
// Should be assertFalse(Arrays.equals(new float[] {-0.0f}, new float[] {0.0f}));
assertTrue(Arrays.equals(new float[] {-0.0f}, new float[] {0.0f}));
// Should be assertTrue(Arrays.equals(new float[] {Float.NaN}, new float[] {Float.NaN}));
assertFalse(Arrays.equals(new float[] {Float.NaN}, new float[] {Float.NaN}));
}
public void testBinarySearch() throws Exception {
// Semantics don't match JVM.
if (TestUtils.isJvm()) {
return;
}
// Should be assertEquals(-1, Arrays.binarySearch(new float[] {-0.0f}, 0.0f));
assertEquals(0, Arrays.binarySearch(new float[] {-0.0f}, 0.0f));
// Should be assertEquals(-1, Arrays.binarySearch(new float[] {0.0f}, Float.NaN));
assertEquals(0, Arrays.binarySearch(new float[] {0.0f}, Float.NaN));
// Should be assertEquals(1, Arrays.binarySearch(new float[] {0.0f, Float.NaN}, Float.NaN));
assertEquals(0, Arrays.binarySearch(new float[] {0.0f, Float.NaN}, Float.NaN));
}
}