Odd Test Output

Hi,

I have these tests

  SomeTestClass = public class(Test)
  private
  protected
  public
    method FirstTest;
    begin
      var x := 5+5;
      Assert.IsTrue(x=10);
    end;
    
    method SecondTest;
    begin
      var x := 5+5;
      Assert.AreNotEqual(x,11);
    end;
    
    
  end;

TestApplication.zip (692.4 KB)

The test output in Fire is this

Test Succeeded: Succeeded (SomeTestClass.pas, 14))
Test Succeeded: Test Succeeded. ((null), 0))
Test Succeeded: Succeeded (SomeTestClass.pas, 20))
Test Succeeded: Test Succeeded. ((null), 0))

Are the ((null),0) meant to be part of the output ?

https://docs.elementscompiler.com/Fire/Debugging/Testing/

Doesn’t show that

Cheers,
John

Nope, thats a side effect of there not being a URL/line number for these. will fix.