Move private APIs to private namespace

Fixes #2078
This commit is contained in:
Steve Gravrock
2025-09-27 13:21:09 -07:00
parent fbec066837
commit 168ff0a751
183 changed files with 2627 additions and 2459 deletions

View File

@@ -2,22 +2,22 @@ describe('toHaveSize', function() {
'use strict';
it('passes for an array whose length matches', function() {
const matcher = jasmineUnderTest.matchers.toHaveSize(),
const matcher = privateUnderTest.matchers.toHaveSize(),
result = matcher.compare([1, 2], 2);
expect(result.pass).toBe(true);
});
it('fails for an array whose length does not match', function() {
const matcher = jasmineUnderTest.matchers.toHaveSize(),
const matcher = privateUnderTest.matchers.toHaveSize(),
result = matcher.compare([1, 2, 3], 2);
expect(result.pass).toBe(false);
});
it('informs about the size of an array whose length does not match', function() {
const matcher = jasmineUnderTest.matchers.toHaveSize({
pp: jasmineUnderTest.makePrettyPrinter()
const matcher = privateUnderTest.matchers.toHaveSize({
pp: privateUnderTest.makePrettyPrinter()
}),
result = matcher.compare([1, 2, 3], 2);
@@ -27,42 +27,42 @@ describe('toHaveSize', function() {
});
it('passes for an object with the proper number of keys', function() {
const matcher = jasmineUnderTest.matchers.toHaveSize(),
const matcher = privateUnderTest.matchers.toHaveSize(),
result = matcher.compare({ a: 1, b: 2 }, 2);
expect(result.pass).toBe(true);
});
it('fails for an object with a different number of keys', function() {
const matcher = jasmineUnderTest.matchers.toHaveSize(),
const matcher = privateUnderTest.matchers.toHaveSize(),
result = matcher.compare({ a: 1, b: 2 }, 1);
expect(result.pass).toBe(false);
});
it('passes for an object with an explicit `length` property that matches', function() {
const matcher = jasmineUnderTest.matchers.toHaveSize(),
const matcher = privateUnderTest.matchers.toHaveSize(),
result = matcher.compare({ a: 1, b: 2, length: 5 }, 5);
expect(result.pass).toBe(true);
});
it('fails for an object with an explicit `length` property that does not match', function() {
const matcher = jasmineUnderTest.matchers.toHaveSize(),
const matcher = privateUnderTest.matchers.toHaveSize(),
result = matcher.compare({ a: 1, b: 2, length: 5 }, 1);
expect(result.pass).toBe(false);
});
it('passes for a string whose length matches', function() {
const matcher = jasmineUnderTest.matchers.toHaveSize(),
const matcher = privateUnderTest.matchers.toHaveSize(),
result = matcher.compare('ab', 2);
expect(result.pass).toBe(true);
});
it('fails for a string whose length does not match', function() {
const matcher = jasmineUnderTest.matchers.toHaveSize(),
const matcher = privateUnderTest.matchers.toHaveSize(),
result = matcher.compare('abc', 2);
expect(result.pass).toBe(false);
@@ -73,7 +73,7 @@ describe('toHaveSize', function() {
map.set('a', 1);
map.set('b', 2);
const matcher = jasmineUnderTest.matchers.toHaveSize(),
const matcher = privateUnderTest.matchers.toHaveSize(),
result = matcher.compare(map, 2);
expect(result.pass).toBe(true);
@@ -84,7 +84,7 @@ describe('toHaveSize', function() {
map.set('a', 1);
map.set('b', 2);
const matcher = jasmineUnderTest.matchers.toHaveSize(),
const matcher = privateUnderTest.matchers.toHaveSize(),
result = matcher.compare(map, 1);
expect(result.pass).toBe(false);
@@ -95,7 +95,7 @@ describe('toHaveSize', function() {
set.add('a');
set.add('b');
const matcher = jasmineUnderTest.matchers.toHaveSize(),
const matcher = privateUnderTest.matchers.toHaveSize(),
result = matcher.compare(set, 2);
expect(result.pass).toBe(true);
@@ -106,14 +106,14 @@ describe('toHaveSize', function() {
set.add('a');
set.add('b');
const matcher = jasmineUnderTest.matchers.toHaveSize(),
const matcher = privateUnderTest.matchers.toHaveSize(),
result = matcher.compare(set, 1);
expect(result.pass).toBe(false);
});
it('throws an error for WeakSet', function() {
const matcher = jasmineUnderTest.matchers.toHaveSize();
const matcher = privateUnderTest.matchers.toHaveSize();
expect(function() {
matcher.compare(new WeakSet(), 2);
@@ -121,7 +121,7 @@ describe('toHaveSize', function() {
});
it('throws an error for WeakMap', function() {
const matcher = jasmineUnderTest.matchers.toHaveSize();
const matcher = privateUnderTest.matchers.toHaveSize();
expect(function() {
matcher.compare(new WeakMap(), 2);
@@ -129,7 +129,7 @@ describe('toHaveSize', function() {
});
it('throws an error for DataView', function() {
const matcher = jasmineUnderTest.matchers.toHaveSize();
const matcher = privateUnderTest.matchers.toHaveSize();
expect(function() {
matcher.compare(new DataView(new ArrayBuffer(128)), 2);