//
// Copyright © 2018 Ranorex All rights reserved
//
using Ranorex.Core.Testing;
namespace Ranorex.AutomationHelpers.UserCodeCollections
{
///
/// A collection of useful validation helper methods.
///
[UserCodeCollection]
public static class ValidationLibrary
{
///
/// Compares two values.
///
/// First value to compare
/// Second value to compare
[UserCodeMethod]
public static void CompareValues(string value1, string value2)
{
Validate.AreEqual(value1, value2);
}
}
}