Remove unused ol.array.binaryFindNearest function
This commit is contained in:
@@ -307,28 +307,6 @@ describe('ol.array', function() {
|
||||
});
|
||||
});
|
||||
|
||||
describe('binaryFindNearest', function() {
|
||||
it('returns expected value', function() {
|
||||
var arr = [1000, 500, 100];
|
||||
|
||||
expect(ol.array.binaryFindNearest(arr, 10000)).to.eql(0);
|
||||
expect(ol.array.binaryFindNearest(arr, 1000)).to.eql(0);
|
||||
expect(ol.array.binaryFindNearest(arr, 900)).to.eql(0);
|
||||
|
||||
expect(ol.array.binaryFindNearest(arr, 750)).to.eql(1);
|
||||
|
||||
expect(ol.array.binaryFindNearest(arr, 550)).to.eql(1);
|
||||
expect(ol.array.binaryFindNearest(arr, 500)).to.eql(1);
|
||||
expect(ol.array.binaryFindNearest(arr, 450)).to.eql(1);
|
||||
|
||||
expect(ol.array.binaryFindNearest(arr, 300)).to.eql(2);
|
||||
|
||||
expect(ol.array.binaryFindNearest(arr, 200)).to.eql(2);
|
||||
expect(ol.array.binaryFindNearest(arr, 100)).to.eql(2);
|
||||
expect(ol.array.binaryFindNearest(arr, 50)).to.eql(2);
|
||||
});
|
||||
});
|
||||
|
||||
describe('equals', function() {
|
||||
it('returns true for [] == []', function() {
|
||||
expect(ol.array.equals([], [])).to.be(true);
|
||||
|
||||
Reference in New Issue
Block a user