Ejemplo n.º 1
0
 public void when_not_defined_opcode()
 {
     EventSourceAnalyzer.InspectAll(NonDefinedOpcodeEventSource.Log);
 }
 public void AnalyzeAExpenseEvents()
 {
     //SAW: #6 Validation
     EventSourceAnalyzer.InspectAll(AExpenseEvents.Log);
 }
Ejemplo n.º 3
0
 public void when_inspecting_event_with_incorrect_keywords_filtering()
 {
     EventSourceAnalyzer.InspectAll(IncorrectKeywordsFilterEventSource.Log);
 }
 public void when_inspecting_event_with_missing_writeEvent_call()
 {
     EventSourceAnalyzer.InspectAll(MissingWriteEventCallEventSource.Log);
 }
 public void when_inspecting_source_with_no_events()
 {
     EventSourceAnalyzer.InspectAll(NoEventsEventSource.Log);
 }
 public void when_inspecting_event_enum_types_that_generates_invalid_manifest()
 {
     EventSourceAnalyzer.InspectAll(DifferentEnumsEventSource.Log);
 }
 public void when_inspecting_event_with_bad_format()
 {
     EventSourceAnalyzer.InspectAll(BadFormatEventSource.Log);
 }
 public void CustomEventSourcePassesValidation()
 {
     EventSourceAnalyzer.InspectAll(WarmStorageEventSource.Log);
 }
Ejemplo n.º 9
0
 public static void LoggerShouldValidateAsAnEventSource()
 {
     EventSourceAnalyzer.InspectAll(DittoEventSource.Log);
 }
Ejemplo n.º 10
0
 public void ShouldValidateEventSource()
 {
     EventSourceAnalyzer.InspectAll(DefaultEventSource.Log);
 }
Ejemplo n.º 11
0
 public void VerifyCalculatorEventSourceIsCorrect()
 {
     EventSourceAnalyzer.InspectAll(CalculatorEventSource.Log);
 }
Ejemplo n.º 12
0
 public void VerifyEventSources() => EventSourceAnalyzer.InspectAll(DefaultEventSource.Log);
Ejemplo n.º 13
0
 public void ValidateEventSource()
 {
     EventSourceAnalyzer.InspectAll(AnalyticsEventSource.Log);
 }
Ejemplo n.º 14
0
 public void CustomEventSourcePassesValidation()
 {
     EventSourceAnalyzer.InspectAll(ScenarioSimulatorEventSource.Log);
 }
 public void when_inspecting_event_with_more_writeEvent_arguments()
 {
     EventSourceAnalyzer.InspectAll(MoreWriteEventArgumentsEventSource.Log);
 }
Ejemplo n.º 16
0
 public void VerifyEventSources()
 {
     EventSourceAnalyzer.InspectAll(MqttIotHubAdapterEventSource.Log);
     EventSourceAnalyzer.InspectAll(BootstrapperEventSource.Log);
 }
 public void when_inspecting_event_with_differentTypeArguments_in_writeEvent()
 {
     EventSourceAnalyzer.InspectAll(DifferentTypeArgumentsWriteEventEventSource.Log);
 }
 public void ShouldValidateEventSource()
 {
     EventSourceAnalyzer.InspectAll(SemanticLoggingEventSource.Log);
 }
 public void when_inspecting_eventSource_with_more_than_one_method_argument_use_nondefault_values()
 {
     EventSourceAnalyzer.InspectAll(NonDefaultArgumentValuesEventSource.Log);
 }
 public void AnalyzeAExpenseEvents()
 {
     EventSourceAnalyzer.InspectAll(AExpenseEvents.Log);
 }
 public void when_inspecting_event_with_eventId_mismatch()
 {
     EventSourceAnalyzer.InspectAll(EventIdMismatchEventSource.Log);
 }
Ejemplo n.º 22
0
 public void when_inspecting_event_with_null_argument_in_writeEvent()
 {
     EventSourceAnalyzer.InspectAll(NullTypeArgumentEventSource.Log);
 }
 public void when_inspecting_event_with_duplicate_events()
 {
     EventSourceAnalyzer.InspectAll(DuplicateEventsEventSource.Log);
 }
Ejemplo n.º 24
0
 public void when_inspecting_event_with_incorrect_level_filtering()
 {
     EventSourceAnalyzer.InspectAll(IncorrectLevelFilterEventSource.Log);
 }
 public void when_inspecting_source_with_argument_order_mismatch_of_same_type()
 {
     EventSourceAnalyzer.InspectAll(SameTypeArgumentsOrderMismatchEventSource.Log);
 }
Ejemplo n.º 26
0
 public void Validate()
 {
     EventSourceAnalyzer.InspectAll(PragmaticAzureEventSource.Logger);
 }