Skip to content

Commit

Permalink
changed back to ascii instead of utf-16
Browse files Browse the repository at this point in the history
  • Loading branch information
Unknown6656 committed Aug 1, 2020
1 parent 9486b3a commit d70240b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
11 changes: 8 additions & 3 deletions TestRunner/TestRunner.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
<PackageLicenseExpression></PackageLicenseExpression>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<AssemblyVersion>1.0.1.0</AssemblyVersion>
<FileVersion>1.0.1.0</FileVersion>
<Version>1.0.1</Version>
<AssemblyVersion>1.0.2.0</AssemblyVersion>
<FileVersion>1.0.2.0</FileVersion>
<Version>1.0.2</Version>
<PackageIcon>unknown6656-logo-1024.png</PackageIcon>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.6.1" />
Expand All @@ -31,5 +32,9 @@
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="..\unknown6656-logo-1024.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>
8 changes: 4 additions & 4 deletions TestRunner/UnitTestRunner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ private static void PrintHeader(string text, int width)

private static void PrintColorDescription(ConsoleColor col, string description)
{
Print(" ▄▄▄ ", col);
Print(" ### ", col);
PrintLine(description, ConsoleColor.White);
}

Expand All @@ -89,12 +89,12 @@ private static void PrintGraph(int padding, int width, string description, param

values[ndx] = (elem.Item1 + rem, elem.Item2);

Print($"{new string(' ', padding)}|", ConsoleColor.White);
Print($"{new string(' ', padding)}[", ConsoleColor.White);

foreach ((double, ConsoleColor) v in values)
Print(new string('', (int)v.Item1), v.Item2);
Print(new string('#', (int)v.Item1), v.Item2);

PrintLine($"| {description ?? ""}", ConsoleColor.White);
PrintLine($"] {description ?? ""}", ConsoleColor.White);
}

public static int RunTests(IEnumerable<Assembly> assemblies)
Expand Down
Binary file added unknown6656-logo-1024.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

1 comment on commit d70240b

@Unknown6656
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.