Ejemplo n.º 1
0
        public void Criar_notebook_Dell()
        {
            _fabricante = new Dell();
            _notebook = _fabricante.Notebook;

            Assert.IsInstanceOf(typeof(Inspiron15R5437), _notebook);
        }
Ejemplo n.º 2
0
        public void Criar_notebook_Sony()
        {
            _fabricante = new Sony();
            _notebook = _fabricante.Notebook;

            Assert.IsInstanceOf(typeof(SonyVaioFit15Svf), _notebook);
        }
Ejemplo n.º 3
0
        public void Criar_notebook_Apple()
        {
            _fabricante = new Apple();
            _notebook = _fabricante.Notebook;

            Assert.IsInstanceOf(typeof(MacBookAirMd71), _notebook);
        }