Skip to content

Commit

Permalink
Small UX improvements in SvgDocTest
Browse files Browse the repository at this point in the history
Code cleanup in SvgDocTest
  • Loading branch information
monoman committed Apr 30, 2018
1 parent e04090b commit 2b36bfe
Show file tree
Hide file tree
Showing 4 changed files with 225 additions and 201 deletions.
32 changes: 32 additions & 0 deletions SvgDocTest/Assert.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
/*
Copyright © 2003 RiskCare Ltd. All rights reserved.
Copyright © 2010 SvgNet & SvgGdi Bridge Project. All rights reserved.
Copyright © 2015 Rafael Teixeira, Mojmír Němeček, Benjamin Peterson and Other Contributors
Original source code licensed with BSD-2-Clause spirit, treat it thus, see accompanied LICENSE for more
*/

using System;
using System.IO;

namespace SvgDocTest
{
public class Assert
{
public static void Equals(float a, float b)
{
if (a != b)
{
throw new Exception("Assert.Equals");
}
}

public static void Equals(bool a, bool b)
{
if (a != b)
{
throw new Exception("Assert.Equals");
}
}
}
}
Loading

0 comments on commit 2b36bfe

Please sign in to comment.