StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
StackGenVis/frontend/node_modules/parse-rect/test.js

20 lines
912 B

'use strict'
const parseRect = require('./')
const assert = require('assert')
var res = {x: 10, y: 20, width: 90, height: 80}
assert.deepEqual(parseRect('10 20 100 100'), res)
assert.deepEqual(parseRect(10, 20, 100, 100), res)
assert.deepEqual(parseRect([10, 20, 100, 100]), res)
assert.deepEqual(parseRect({ x: 10, y: 20, width: 90, height: 80 }), res)
assert.deepEqual(parseRect({ x: 10, y: 20, w: 90, h: 80 }), res)
assert.deepEqual(parseRect({ l: 10, t: 20, r: 100, b: 100 }), res)
assert.deepEqual(parseRect({ left: 10, top: 20, right: 100, bottom: 100 }), res)
var res = {x: 0, y: 0, width: 90, height: 80}
assert.deepEqual(parseRect({ width: 90, height: 80 }), res)
assert.deepEqual(parseRect([10, 20]), {width: 10, height: 20, x: 0, y: 0})
assert.deepEqual(parseRect(10), {width: 10, height: 10, x: 0, y: 0})
assert.deepEqual(parseRect([10]), {width: 10, height: 10, x: 0, y: 0})