Exemplo n.º 1
0
        public void EntreNotNull()
        {   //Arrange
            Entre sut3 = new Entre();
            //Act
            var result = new Entre();

            //Assert
            Assert.NotNull(result);
        }
Exemplo n.º 2
0
        private void resultadoEntre()
        {
            Entre entre = new Entre();

            if (rbtCodificar.Checked)
            {
                lblValor.Text = Function.codificar(txtValor.Text, entre.dicValores);
            }
            else
            {
                lblValor.Text = Function.decodificar(txtValor.Text, entre.dicValores, 5);
            }
        }