jmeter-dotnet-dsl icon indicating copy to clipboard operation
jmeter-dotnet-dsl copied to clipboard

ERROR org.apache.jmeter.util.JMeterUtils - Could not find resources for 'ru_RU'

Open Lavshyak opened this issue 8 months ago • 2 comments

Windows 10 with Russian language, Rider with English language, Java 8 Update 411, Java SE Development Kit 8 Update 60 (64-bit), Java(TM) SE Development Kit 21 (64-bit), .NET SDK 8.

using NUnit.Framework;
using static Abstracta.JmeterDsl.JmeterDsl;

namespace StressTest;

public class SomeTest
{
    [Test]
    public void LoadTest()
    {
        var stats = TestPlan(
            ThreadGroup(1, 1,
                HttpSampler("https://google.com/")
                    .Method(HttpMethod.Post.Method)
            )
        ).Run();
        Assert.That(stats.Overall.SampleTimePercentile99, Is.LessThan(TimeSpan.FromSeconds(5)));
    }
}

When i run LoadTest:

01:22:47.277 [main] ERROR org.apache.jmeter.util.JMeterUtils - Could not find resources for 'ru_RU' = 1 in 00:00:01 = 1,6/s Avg: 523 Min: 523 Max: 523 Err: 1 (100,00%)

Where i can specify 'en_EN'?

Lavshyak avatar Jun 12 '24 20:06 Lavshyak