You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Zero/ZeroLevel.UnitTests/Models/StaticFakeClass.cs

12 lines
298 B

using System;
namespace ZeroInvokingTest.Models
{
public static class StaticFakeClass
{
public static string GetString(string line) => line;
internal static int GetNumber(int number) => number;
private static DateTime GetDateTime(DateTime date) => date;
}
}

Powered by TurnKey Linux.