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

@@ -1,7 +1,7 @@
describe('FakeDate', function() {
it('does not fail if no global date is found', function() {
const fakeGlobal = {},
mockDate = new jasmineUnderTest.MockDate(fakeGlobal);
mockDate = new privateUnderTest.MockDate(fakeGlobal);
expect(function() {
mockDate.install();
@@ -19,7 +19,7 @@ describe('FakeDate', function() {
};
}),
fakeGlobal = { Date: globalDate },
mockDate = new jasmineUnderTest.MockDate(fakeGlobal);
mockDate = new privateUnderTest.MockDate(fakeGlobal);
expect(fakeGlobal.Date).toEqual(globalDate);
mockDate.install();
@@ -36,7 +36,7 @@ describe('FakeDate', function() {
};
}),
fakeGlobal = { Date: globalDate },
mockDate = new jasmineUnderTest.MockDate(fakeGlobal);
mockDate = new privateUnderTest.MockDate(fakeGlobal);
mockDate.install();
mockDate.uninstall();
@@ -55,7 +55,7 @@ describe('FakeDate', function() {
};
}),
fakeGlobal = { Date: globalDate },
mockDate = new jasmineUnderTest.MockDate(fakeGlobal);
mockDate = new privateUnderTest.MockDate(fakeGlobal);
mockDate.install();
@@ -66,7 +66,7 @@ describe('FakeDate', function() {
it('can accept a date as time base when installing', function() {
const fakeGlobal = { Date: Date },
mockDate = new jasmineUnderTest.MockDate(fakeGlobal),
mockDate = new privateUnderTest.MockDate(fakeGlobal),
baseDate = new Date();
spyOn(baseDate, 'getTime').and.returnValue(123);
@@ -77,7 +77,7 @@ describe('FakeDate', function() {
it('makes real dates', function() {
const fakeGlobal = { Date: Date },
mockDate = new jasmineUnderTest.MockDate(fakeGlobal);
mockDate = new privateUnderTest.MockDate(fakeGlobal);
mockDate.install();
expect(new fakeGlobal.Date()).toEqual(jasmine.any(Date));
@@ -97,7 +97,7 @@ describe('FakeDate', function() {
fakeGlobal = { Date: globalDate };
globalDate.now = function() {};
const mockDate = new jasmineUnderTest.MockDate(fakeGlobal);
const mockDate = new privateUnderTest.MockDate(fakeGlobal);
mockDate.install();
@@ -117,7 +117,7 @@ describe('FakeDate', function() {
fakeGlobal = { Date: globalDate };
globalDate.now = function() {};
const mockDate = new jasmineUnderTest.MockDate(fakeGlobal);
const mockDate = new privateUnderTest.MockDate(fakeGlobal);
mockDate.install();
@@ -143,7 +143,7 @@ describe('FakeDate', function() {
fakeGlobal = { Date: globalDate };
globalDate.now = function() {};
const mockDate = new jasmineUnderTest.MockDate(fakeGlobal);
const mockDate = new privateUnderTest.MockDate(fakeGlobal);
mockDate.install();
@@ -156,7 +156,7 @@ describe('FakeDate', function() {
it('allows creation of a Date in a different time than the mocked time', function() {
const fakeGlobal = { Date: Date },
mockDate = new jasmineUnderTest.MockDate(fakeGlobal);
mockDate = new privateUnderTest.MockDate(fakeGlobal);
mockDate.install();
@@ -168,7 +168,7 @@ describe('FakeDate', function() {
it("allows creation of a Date that isn't fully specified", function() {
const fakeGlobal = { Date: Date },
mockDate = new jasmineUnderTest.MockDate(fakeGlobal);
mockDate = new privateUnderTest.MockDate(fakeGlobal);
mockDate.install();
@@ -178,7 +178,7 @@ describe('FakeDate', function() {
it('allows creation of a Date with millis', function() {
const fakeGlobal = { Date: Date },
mockDate = new jasmineUnderTest.MockDate(fakeGlobal),
mockDate = new privateUnderTest.MockDate(fakeGlobal),
now = new Date(2014, 3, 15).getTime();
mockDate.install();
@@ -189,7 +189,7 @@ describe('FakeDate', function() {
it('copies all Date properties to the mocked date', function() {
const fakeGlobal = { Date: Date },
mockDate = new jasmineUnderTest.MockDate(fakeGlobal);
mockDate = new privateUnderTest.MockDate(fakeGlobal);
mockDate.install();