8c71f5f8c709e491094d630590bf1aba6e37b760
[platform/framework/web/crosswalk-tizen.git] /
1 'use strict';
2
3 var SetPoly = require('../polyfill');
4
5 module.exports = function (t, a) {
6         var set;
7         a.throws(function () { t(undefined); }, TypeError, "Undefined");
8         a.throws(function () { t(null); }, TypeError, "Null");
9         a.throws(function () { t(true); }, TypeError, "Primitive");
10         a.throws(function () { t('raz'); }, TypeError, "String");
11         a.throws(function () { t({}); }, TypeError, "Object");
12         a.throws(function () { t([]); }, TypeError, "Array");
13         if (typeof Set !== 'undefined') {
14                 set = new Set();
15                 a(t(set), set, "Native");
16         }
17         set = new SetPoly();
18         a(t(set), set, "Polyfill");
19 };