MockLocationStrategy
A mock implementation of LocationStrategy
that allows tests to fire simulated
location events.
class MockLocationStrategy extends LocationStrategy {
internalBaseHref: string
internalPath: string
internalTitle: string
urlChanges: string[]
simulatePopState(url: string): void
path(includeHash: boolean = false): string
prepareExternalUrl(internal: string): string
pushState(ctx: any, title: string, path: string, query: string): void
replaceState(ctx: any, title: string, path: string, query: string): void
onPopState(fn: (value: any) => void): void
getBaseHref(): string
back(): void
forward(): void
// inherited from common/LocationStrategy
abstract path(includeHash?: boolean): string
abstract prepareExternalUrl(internal: string): string
abstract pushState(state: any, title: string, url: string, queryParams: string): void
abstract replaceState(state: any, title: string, url: string, queryParams: string): void
abstract forward(): void
abstract back(): void
abstract onPopState(fn: LocationChangeListener): void
abstract getBaseHref(): string
}
Properties
Property | Description |
---|---|
internalBaseHref: string
|
|
internalPath: string
|
|
internalTitle: string
|
|
urlChanges: string[]
|
Methods
ParametersThere are no parameters. Returns
|
ParametersThere are no parameters. Returns
|
ParametersThere are no parameters. Returns
|