My favorites | Sign in
Project Logo
                
Details: Show all Hide all

Older

  • Aug 27, 2009
    issue 3 (Regional differences in decimal separator) commented on by mgwojcik   -   You are right that this should be system specific, but I want to keep code as close as possible to original Java version.
    You are right that this should be system specific, but I want to keep code as close as possible to original Java version.
  • Aug 27, 2009
    issue 3 (Regional differences in decimal separator) reported by ve...@vi-kan.net   -   Some matching assumes . for decimal separator, which is not the case in some regions. FitMatcher.pas uses two regular expressions to match comparative results: line 72: p := '^\s*_?\s*(<|>|<=|>=)\s*([-+]?[\d]*\.?[\d]+)'; line 108: p := '^\s*([-+]?[\d]*\.?[\d]+)\s*(<|>|<=|>=)\s*_\s*(<|>|<=|>=)\s*([-+]? [\d]*\.?[\d]+)'; The three dot's should be replaced with references to the global variable DecimalSeparator. Something like this: line 72: p := '^\s*_?\s*(<|>|<=|>=)\s*([-+]?[\d]*\' + DecimalSeparator + '? [\d]+)'; line 108: p := '^\s*([-+]?[\d]*\' + DecimalSeparator + '?[\d]+)\s*(<|>|<=|>=)\s*_ \s*(<|>|<=|>=)\s*([-+]?[\d]*\' + DecimalSeparator + '?[\d]+)'; regards, -Vegar
    Some matching assumes . for decimal separator, which is not the case in some regions. FitMatcher.pas uses two regular expressions to match comparative results: line 72: p := '^\s*_?\s*(<|>|<=|>=)\s*([-+]?[\d]*\.?[\d]+)'; line 108: p := '^\s*([-+]?[\d]*\.?[\d]+)\s*(<|>|<=|>=)\s*_\s*(<|>|<=|>=)\s*([-+]? [\d]*\.?[\d]+)'; The three dot's should be replaced with references to the global variable DecimalSeparator. Something like this: line 72: p := '^\s*_?\s*(<|>|<=|>=)\s*([-+]?[\d]*\' + DecimalSeparator + '? [\d]+)'; line 108: p := '^\s*([-+]?[\d]*\' + DecimalSeparator + '?[\d]+)\s*(<|>|<=|>=)\s*_ \s*(<|>|<=|>=)\s*([-+]?[\d]*\' + DecimalSeparator + '?[\d]+)'; regards, -Vegar
  • Jan 01, 2009
    issue 2 (Compile issue with D2007 (SVN revision 33)) commented on by trident.job   -   Patch contains this fix Replace this : CheckEquals(95, a.get); by this : CheckEquals(95, integer(a.get));
    Patch contains this fix Replace this : CheckEquals(95, a.get); by this : CheckEquals(95, integer(a.get));
  • Jan 01, 2009
    issue 2 (Compile issue with D2007 (SVN revision 33)) reported by trident.job   -   What steps will reproduce the problem? 1. Get archive svn 33 2. Do a full rebuild under Delphi2007 3. What is the expected output? What do you see instead? 1 compilation error for FitDTests project: [DCC Error] TypeAdapterTests.pas(232): E2251 Ambiguous overloaded call to 'CheckEquals' What version of the product are you using? On what operating system? WindowsXP-SP3, Delphi2007-latest patch Please provide any additional information below. Here is a svn patch to correct this issue
    What steps will reproduce the problem? 1. Get archive svn 33 2. Do a full rebuild under Delphi2007 3. What is the expected output? What do you see instead? 1 compilation error for FitDTests project: [DCC Error] TypeAdapterTests.pas(232): E2251 Ambiguous overloaded call to 'CheckEquals' What version of the product are you using? On what operating system? WindowsXP-SP3, Delphi2007-latest patch Please provide any additional information below. Here is a svn patch to correct this issue
  • Dec 01, 2008
    r33 (Fixed problem with running tests from command line Fixed pro...) committed by mgwojcik   -   Fixed problem with running tests from command line Fixed problem with URL encoding
    Fixed problem with running tests from command line Fixed problem with URL encoding
  • Nov 18, 2008
    issue 1 (Compile issue with D2007 (SVN revision 30)) changed by mgwojcik   -   Applied proposed fix.
    Status: Fixed
    Owner: mgwojcik
    Labels: OpSys-Windows
    Applied proposed fix.
    Status: Fixed
    Owner: mgwojcik
    Labels: OpSys-Windows
  • Nov 18, 2008
    r32 (Fixed issue #1) committed by mgwojcik   -   Fixed issue #1
  • Nov 18, 2008
    r31 (Fixed problem with multiple formatters) committed by mgwojcik   -   Fixed problem with multiple formatters
    Fixed problem with multiple formatters
  • Nov 16, 2008
    issue 1 (Compile issue with D2007 (SVN revision 30)) commented on by trident.job   -   The following line is the error: CheckEquals(90, a.get); When casting a.get to integer, it solves the issue. CheckEquals(90, integer(a.get));
    The following line is the error: CheckEquals(90, a.get); When casting a.get to integer, it solves the issue. CheckEquals(90, integer(a.get));
  • Nov 16, 2008
    issue 1 (Compile issue with D2007 (SVN revision 30)) reported by trident.job   -   What steps will reproduce the problem? 1. Get archive svn 30 2. Do a full rebuild under Delphi2007 3. What is the expected output? What do you see instead? 2 compilation errors for FitDTests project: 1/ [DCC Error] TypeAdapterTests.pas(135): E2251 Ambiguous overloaded call to 'CheckEquals' 2/ [DCC Error] TypeAdapterTests.pas(235): E2251 Ambiguous overloaded call to 'CheckEquals' What version of the product are you using? On what operating system? WindowsXP-SP3, Delphi2007-latest patch Please provide any additional information below.
    What steps will reproduce the problem? 1. Get archive svn 30 2. Do a full rebuild under Delphi2007 3. What is the expected output? What do you see instead? 2 compilation errors for FitDTests project: 1/ [DCC Error] TypeAdapterTests.pas(135): E2251 Ambiguous overloaded call to 'CheckEquals' 2/ [DCC Error] TypeAdapterTests.pas(235): E2251 Ambiguous overloaded call to 'CheckEquals' What version of the product are you using? On what operating system? WindowsXP-SP3, Delphi2007-latest patch Please provide any additional information below.
  • Oct 06, 2008
    r30 (Implemented DelphiTestRunner FitServer renamed to DelphiFitS...) committed by mgwojcik   -   Implemented DelphiTestRunner FitServer renamed to DelphiFitServer FitRunner renamed to DelphiFitRunner Some bugfixes
    Implemented DelphiTestRunner FitServer renamed to DelphiFitServer FitRunner renamed to DelphiFitRunner Some bugfixes
  • Sep 29, 2008
    r29 (Solved problem with BPLs with spaces in the path Updated Sum...) committed by mgwojcik   -   Solved problem with BPLs with spaces in the path Updated SummaryFixture
    Solved problem with BPLs with spaces in the path Updated SummaryFixture
  • Sep 29, 2008
    ProjectStatus (Current status of project.) Wiki page edited by mgwojcik
  • Sep 29, 2008
    GettingStarted (Following are the steps to build the servers, examples and t...) Wiki page edited by mgwojcik
  • Sep 29, 2008
    r26 committed by mgwojcik
  • Sep 29, 2008
    r25 (Removed absolute paths and environment variable DelphiFit Re...) committed by mgwojcik   -   Removed absolute paths and environment variable DelphiFit RegExpr unit renamed to Matcher
    Removed absolute paths and environment variable DelphiFit RegExpr unit renamed to Matcher
  • Sep 26, 2008
    r24 (Fixed problem with calling fixtures like 'Summary' in the te...) committed by mgwojcik   -   Fixed problem with calling fixtures like 'Summary' in the test while class name is 'TSummaryFixture'. Updated examples
    Fixed problem with calling fixtures like 'Summary' in the test while class name is 'TSummaryFixture'. Updated examples
  • Sep 26, 2008
    r23 (Fixed FitRunner - now it is possible to provide list of BPLs...) committed by mgwojcik   -   Fixed FitRunner - now it is possible to provide list of BPLs to load as third parameter.
    Fixed FitRunner - now it is possible to provide list of BPLs to load as third parameter.
  • Sep 26, 2008
    r22 (Added missing unit) committed by mgwojcik   -   Added missing unit
    Added missing unit
  • Sep 24, 2008
    r21 (Added $H+ for each unit to let use FIT in projects with Stri...) committed by mgwojcik   -   Added $H+ for each unit to let use FIT in projects with String == ShortString Merged changes from Chuck Crowell-Taynton ActionFixture.enter is now expecting methods instead of properties (change to follow Java version) Upadated examples
    Added $H+ for each unit to let use FIT in projects with String == ShortString Merged changes from Chuck Crowell-Taynton ActionFixture.enter is now expecting methods instead of properties (change to follow Java version) Upadated examples
  • Sep 24, 2008
    r20 (uFitServer.pas moved to fit sources Started adding $H+ modif...) committed by mgwojcik   -   uFitServer.pas moved to fit sources Started adding $H+ modifier to files
    uFitServer.pas moved to fit sources Started adding $H+ modifier to files
  • Sep 24, 2008
    TechnicalDetails Wiki page edited by mgwojcik
  • Sep 24, 2008
    r18 committed by mgwojcik
  • Sep 24, 2008
    r17 (Solved problem with running under Delphi 7 Added FitRunner (...) committed by mgwojcik   -   Solved problem with running under Delphi 7 Added FitRunner (still missing loading of BPLs)
    Solved problem with running under Delphi 7 Added FitRunner (still missing loading of BPLs)
  • Sep 19, 2008
    r16 (Added tests Fixed problem with parsing Integers and Floats) committed by mgwojcik   -   Added tests Fixed problem with parsing Integers and Floats
    Added tests Fixed problem with parsing Integers and Floats
  • Sep 18, 2008
    r15 (Added missing units and tests. Solved problem with package n...) committed by mgwojcik   -   Added missing units and tests. Solved problem with package name Fixed some issues
    Added missing units and tests. Solved problem with package name Fixed some issues
  • Sep 18, 2008
    ProjectStatus (Current status of project.) Wiki page added by mgwojcik
  • Sep 17, 2008
    GettingStarted (Following are the steps to build the servers, examples and t...) Wiki page edited by mgwojcik
  • Sep 17, 2008
    r12 (Added FitNesseRoot) committed by mgwojcik   -   Added FitNesseRoot
    Added FitNesseRoot
  • Sep 17, 2008
    GettingStarted (Following are the steps to build the servers, examples and t...) Wiki page edited by mgwojcik
  • Sep 17, 2008
    GettingStarted (Following are the steps to build the servers, examples and t...) Wiki page added by mgwojcik
  • Sep 17, 2008
    r9 (First public version of Fit4Delphi) committed by mgwojcik   -   First public version of Fit4Delphi
    First public version of Fit4Delphi
  • Sep 17, 2008
    TechnicalDetails Wiki page edited by mgwojcik
  • Sep 17, 2008
    TechnicalDetails Wiki page edited by mgwojcik
  • Sep 17, 2008
    NextSteps (Out plans for the near future) Wiki page added by mgwojcik
  • Sep 16, 2008
    TechnicalDetails Wiki page edited by mgwojcik
  • Sep 16, 2008
    TechnicalDetails Wiki page edited by mgwojcik
  • Sep 16, 2008
    TechnicalDetails Wiki page edited by mgwojcik
  • Sep 16, 2008
    TechnicalDetails (One-sentence summary of this page.) Wiki page added by mgwojcik
  • Sep 16, 2008
    Project fit4delphi created by mgwojcik   -   FIT (Framework for integrated testing) implemented in Delphi
    FIT (Framework for integrated testing) implemented in Delphi
 
Hosted by Google Code