Inheritance: INotifyPropertyChanged
Exemplo n.º 1
0
        public void ShouldNotAttemptToRegisterIfConfirmPasswordNotFilledIn()
        {
            var vm = new MainVm();

            Assert.That(() => vm.Register(_username, _email, _confirmEmail, _password, string.Empty, _basicroles),
                Throws.Exception);
        }
Exemplo n.º 2
0
        public void ShouldNotAttemptToRegisterIfRolesNotFilledIn()
        {
            var vm = new MainVm();

            Assert.That(() => vm.Register(_username, _email, _confirmEmail, _password, string.Empty, new Dictionary<string, bool>()),
                Throws.Exception);
        }
Exemplo n.º 3
0
        public MainWindow()
        {
            InitializeComponent();
            _mainVm = new MainVm();

            DataContext = _mainVm;
        }