Ejemplo n.º 1
0
            public void ShouldNotThrowExceptionWhenValid()
            {
                IAction action = new CameraAction()
                {
                    Label = "Test"
                };

                action.Validate();
            }
Ejemplo n.º 2
0
            public void ShouldThrowExceptionWhenLabelIsNull()
            {
                IAction action = new CameraAction();

                ExceptionAssert.Throws <InvalidOperationException>("The label cannot be null.", () =>
                {
                    action.Validate();
                });
            }