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

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

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

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