/**
 * @license
 * Copyright Google Inc. All Rights Reserved.
 *
 * Use of this source code is governed by an MIT-style license that can be
 * found in the LICENSE file at https://angular.io/license
 */
import {NgLocalization, NgPlural, NgPluralCase} from '@angular/common';
import {Component, Injectable} from '@angular/core';
import {TestBed, async} from '@angular/core/testing';
import {beforeEach, ddescribe, describe, iit, inject, it, xit} from '@angular/core/testing/testing_internal';
import {expect} from '@angular/platform-browser/testing/matchers';
export function main() {
  describe('switch', () => {
    beforeEach(() => {
      TestBed.configureTestingModule({
        declarations: [TestComponent],
        providers: [{provide: NgLocalization, useClass: TestLocalization}]
      });
    });
    it('should display the template according to the exact value', async(() => {
         var template = '
' +
             '
' +
             '- you have no messages.' +
             '
- you have one message.' +
             '
' +
             '
' +
             '- {{ switchValue }}' +
             '
' +
             '' +
             'you have no messages.' +
             'you have one message.' +
             '
';
         TestBed.overrideComponent(TestComponent, {set: {template: template}});
         let fixture = TestBed.createComponent(TestComponent);
         fixture.debugElement.componentInstance.switchValue = 0;
         fixture.detectChanges();
         expect(fixture.debugElement.nativeElement).toHaveText('you have no messages.');
         fixture.debugElement.componentInstance.switchValue = 1;
         fixture.detectChanges();
         expect(fixture.debugElement.nativeElement).toHaveText('you have one message.');
       }));
    it('should display the template according to the category', async(() => {
         var template = '' +
             '
' +
             '- you have a few messages.' +
             '
- you have many messages.' +
             '
' +
             '
' +
             '- you have a few messages.' +
             '
- default message.' +
             '
' +
             '
' +
             '- you have a few messages.' +
             'you have two messages.' +
             '