Skip to content
View BlitzkriegSoftware's full-sized avatar
💭
Coding
💭
Coding

Highlights

  • Pro
Block or Report

Block or report BlitzkriegSoftware

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. A handy testing method to serialize ... A handy testing method to serialize an object as JSON for MSTEST output
    1
    /// <summary>
    2
    /// Helper to output as JSON
    3
    /// </summary>
    4
    public static class TestOutputHelper
    5
    {
  2. A handy logger for use in MSTEST to ... A handy logger for use in MSTEST to provide an ILogger
    1
    /// <summary>
    2
    /// MsTestLogger<typeparamref name="T"/> for ILogger
    3
    /// </summary>
    4
    /// <typeparam name="T"></typeparam>
    5
    public class MsTestLogger<T> : ILogger<T>, IDisposable
  3. Test serialization of a DTO (if you ... Test serialization of a DTO (if you have a REST API, please test it's DTOs)
    1
            // using Microsoft.VisualStudio.TestTools.UnitTesting;
    2
            // using Newtonsoft.Json;
    3
            // using System;
    4
            // using System.Collections.Generic;
    5
            // using System.Linq;
  4. BASH Script to use SSL to make a K8s... BASH Script to use SSL to make a K8s USER Certificate
    1
    #!/bin/bash
    2
    if [ -z "$1" ]; then
    3
      echo "$0 username"
    4
      exit 1
    5
    fi