namespace Nop.Tests; /// /// Represents default values related to tests /// public static partial class NopTestsDefaults { /// /// Gets the default admin email /// public static string AdminEmail { get; } = "test@nopCommerce.com"; /// /// Gets the default admin password /// public static string AdminPassword { get; } = "test_password"; /// /// Gets the default host IP address /// public static string HostIpAddress { get; } = "127.0.0.1"; }