Thread Rating:
  • 1 Vote(s) - 4 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Intraweb DUnit Testing
#23
Thanks very much for your support. All issues have been fixed, the generate DUnit Test project compiles and runs without AV. The only thing about the generated code is that you cannot call Free (of the Session) in the Test method, but must delay that until the TearDown method:


type
  TIWTestCase1 = class(TTestCase)
  private
    Session: TIWTestApplication;

...

procedure TIWTestCase1.SetUp;
begin
  // Setup
  Session := NewSession();
end;

procedure TIWTestCase1.TearDown;
begin
  // Clean up
  Session.Free;
end;

procedure TIWTestCase1.Test;
begin
  with Session.MainForm as TIWForm1 do
  begin
    // your testcode here...
  end;
end;
Reply


Messages In This Thread
Intraweb DUnit Testing - by cpstevenc - 02-27-2019, 05:35 PM
RE: Intraweb DUnit Testing - by kudzu - 02-28-2019, 04:31 AM
RE: Intraweb DUnit Testing - by sigiaccio - 06-05-2020, 10:36 AM
RE: Intraweb DUnit Testing - by sigiaccio - 06-17-2020, 10:06 AM
RE: Intraweb DUnit Testing - by sigiaccio - 09-07-2020, 08:11 AM
RE: Intraweb DUnit Testing - by kudzu - 09-07-2020, 05:44 PM
RE: Intraweb DUnit Testing - by Alexandre Machado - 09-07-2020, 09:07 PM
RE: Intraweb DUnit Testing - by sigiaccio - 09-14-2020, 07:11 AM
RE: Intraweb DUnit Testing - by ebob42 - 10-29-2021, 10:55 PM
RE: Intraweb DUnit Testing - by Alexandre Machado - 11-01-2021, 03:25 AM
RE: Intraweb DUnit Testing - by ebob42 - 11-01-2021, 05:49 AM
RE: Intraweb DUnit Testing - by Alexandre Machado - 11-02-2021, 11:23 PM
RE: Intraweb DUnit Testing - by Alexandre Machado - 11-03-2021, 09:02 AM
RE: Intraweb DUnit Testing - by ebob42 - 11-03-2021, 06:26 PM
RE: Intraweb DUnit Testing - by Alexandre Machado - 11-08-2021, 07:08 AM
RE: Intraweb DUnit Testing - by Alexandre Machado - 11-12-2021, 08:13 AM
RE: Intraweb DUnit Testing - by ebob42 - 11-13-2021, 11:03 AM
RE: Intraweb DUnit Testing - by jeroen.rottink - 11-13-2021, 04:07 PM
RE: Intraweb DUnit Testing - by Alexandre Machado - 11-13-2021, 09:48 PM
RE: Intraweb DUnit Testing - by ebob42 - 11-14-2021, 02:27 PM
RE: Intraweb DUnit Testing - by Alexandre Machado - 11-15-2021, 12:06 AM
RE: Intraweb DUnit Testing - by Alexandre Machado - 11-15-2021, 08:52 AM
RE: Intraweb DUnit Testing - by ebob42 - 11-19-2021, 10:21 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)