Bottles.Tests.BottlingDiagnosticsTester.log_execution_happy_path C# (CSharp) Метод

log_execution_happy_path() приватный Метод

private log_execution_happy_path ( ) : void
Результат void
        public void log_execution_happy_path()
        {
            var loader = new StubPackageLoader("a", "b");
            diagnostics.LogObject(loader, "registered at XYZ");

            diagnostics.LogExecution(loader, () => { });

            var log = diagnostics.LogFor(loader);
            log.Success.ShouldBeTrue();
        }