test boundary refactoring and main() invocation (0826)

This commit is contained in:
Jason Choi
2016-08-26 12:02:42 -07:00
parent 7c07bfff97
commit 23a942ddec
188 changed files with 618 additions and 315 deletions

View File

@ -55,3 +55,5 @@ export function main() {
});
});
}
main();

View File

@ -9,8 +9,8 @@
import {DefaultIterableDiffer, DefaultIterableDifferFactory} from '@angular/core/src/change_detection/differs/default_iterable_differ';
import {afterEach, beforeEach, ddescribe, describe, expect, iit, it, xit} from '@angular/core/testing/testing_internal';
import {ListWrapper} from '../../../src/facade/collection';
import {NumberWrapper} from '../../../src/facade/lang';
import {ListWrapper} from '@angular/facade/src/collection';
import {NumberWrapper} from '@angular/facade/src/lang';
import {TestIterable} from '../../change_detection/iterable';
import {iterableChangesAsString} from '../../change_detection/util';
@ -595,3 +595,5 @@ export function main() {
});
}
main();

View File

@ -227,3 +227,5 @@ export function main() {
});
});
}
main();

View File

@ -69,3 +69,5 @@ export function main() {
});
});
}
main();

View File

@ -6,7 +6,7 @@
* found in the LICENSE file at https://angular.io/license
*/
import {getSymbolIterator} from '../../src/facade/lang';
import {getSymbolIterator} from '@angular/facade/src/lang';
export class TestIterable {
list: number[];

View File

@ -6,7 +6,7 @@
* found in the LICENSE file at https://angular.io/license
*/
import {isBlank} from '../../src/facade/lang';
import {isBlank} from '@angular/facade/src/lang';
export function iterableChangesAsString(
{collection = [] as any, previous = [] as any, additions = [] as any, moves = [] as any,