| NotChangedKind Enumeration |
Specifies flags that control what is tested for non-changes.
Namespace:
SmartTests.Assertions
Assembly:
SmartTests (in SmartTests.dll) Version: 1.12.0
Syntax [FlagsAttribute]
public enum NotChangedKind
<FlagsAttribute>
Public Enumeration NotChangedKind
[FlagsAttribute]
public enum class NotChangedKind
[<FlagsAttribute>]
type NotChangedKind
Members
| Member name | Value | Description |
---|
| PublicProperties | 1 |
Specifies that all public properties have to be checked for modification.
|
| ProtectedProperties | 2 |
Specifies that all protected properties have to be checked for modification.
|
| InternalProperties | 4 |
Specifies that all internal properties have to be checked for modification.
|
| PrivateProperties | 8 |
Specifies that all private properties have to be checked for modification.
|
| NonPublicProperties | 14 |
Specifies that all non-public properties (i.e. protected, internal and private) have to be checked for
modification.
|
| VisibleProperties | 3 |
Specifies that all visible properties (i.e. public and protected) have to be checked for modification.
|
| AllProperties | 15 |
Specifies that all properties (i.e. public, protected, internal and private) have to be checked for modification.
|
| PublicFields | 16 |
Specifies that all public fields have to be checked for modification.
|
| ProtectedFields | 32 |
Specifies that all protected fields have to be checked for modification.
|
| InternalFields | 64 |
Specifies that all internal fields have to be checked for modification.
|
| PrivateFields | 128 |
Specifies that all private fields have to be checked for modification.
|
| NonPublicFields | 224 |
Specifies that all non-public fields (i.e. protected, internal and private) have to be checked for modification.
|
| VisibleFields | 48 |
Specifies that all visible fields (i.e. public and protected) have to be checked for modification.
|
| AllFields | 240 |
Specifies that all fields (i.e. public, protected, internal and private) have to be checked for modification.
|
| All | 255 |
Specifies that all properties and all fields (i.e. public, protected, internal and private) have to be checked for
modification.
|
See Also