Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

NopTestsDefaults.cs

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";
}