예제 #1
0
        public void Criar_notebook_Dell()
        {
            _fabricante = new Dell();
            _notebook = _fabricante.Notebook;

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

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

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