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.
45 lines
999 B
45 lines
999 B
var tap = require('tap');
|
|
var tape = require('../');
|
|
var concat = require('concat-stream');
|
|
|
|
tap.test('tape only test', function (tt) {
|
|
var test = tape.createHarness({ exit: false });
|
|
var ran = [];
|
|
|
|
var tc = function (rows) {
|
|
tt.deepEqual(rows.toString('utf8'), [
|
|
'TAP version 13',
|
|
'# run success',
|
|
'ok 1 assert name',
|
|
'',
|
|
'1..1',
|
|
'# tests 1',
|
|
'# pass 1',
|
|
'',
|
|
'# ok'
|
|
].join('\n') + '\n');
|
|
tt.deepEqual(ran, [ 3 ]);
|
|
|
|
tt.end();
|
|
};
|
|
|
|
test.createStream().pipe(concat(tc));
|
|
|
|
test("never run fail", function (t) {
|
|
ran.push(1);
|
|
t.equal(true, false);
|
|
t.end();
|
|
});
|
|
|
|
test("never run success", function (t) {
|
|
ran.push(2);
|
|
t.equal(true, true);
|
|
t.end();
|
|
});
|
|
|
|
test.only("run success", function (t) {
|
|
ran.push(3);
|
|
t.ok(true, "assert name");
|
|
t.end();
|
|
});
|
|
});
|
|
|