[Fat-develop] FAT/test/FAT.Acceptance FAT.Acceptance.csproj,1.4,1.5 WebFixture.cs,1.1,1.2
Brought to you by:
exortech
|
From: <exo...@us...> - 2004-01-15 00:57:01
|
Update of /cvsroot/fat/FAT/test/FAT.Acceptance
In directory sc8-pr-cvs1:/tmp/cvs-serv19380/test/FAT.Acceptance
Modified Files:
FAT.Acceptance.csproj WebFixture.cs
Log Message:
commits to fat will now be sent out on developer mailing list
Index: FAT.Acceptance.csproj
===================================================================
RCS file: /cvsroot/fat/FAT/test/FAT.Acceptance/FAT.Acceptance.csproj,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** FAT.Acceptance.csproj 6 Jan 2004 21:36:31 -0000 1.4
--- FAT.Acceptance.csproj 15 Jan 2004 00:56:58 -0000 1.5
***************
*** 16,20 ****
DefaultTargetSchema = "IE50"
DelaySign = "false"
! OutputType = "Exe"
RootNamespace = "FAT.Acceptance"
StartupObject = "FAT.Acceptance.AllTests"
--- 16,20 ----
DefaultTargetSchema = "IE50"
DelaySign = "false"
! OutputType = "Library"
RootNamespace = "FAT.Acceptance"
StartupObject = "FAT.Acceptance.AllTests"
***************
*** 32,36 ****
IncrementalBuild = "true"
Optimize = "false"
! OutputPath = "..\..\build\"
RegisterForComInterop = "false"
RemoveIntegerChecks = "false"
--- 32,36 ----
IncrementalBuild = "true"
Optimize = "false"
! OutputPath = "bin\Debug\"
RegisterForComInterop = "false"
RemoveIntegerChecks = "false"
Index: WebFixture.cs
===================================================================
RCS file: /cvsroot/fat/FAT/test/FAT.Acceptance/WebFixture.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** WebFixture.cs 12 Dec 2003 23:28:50 -0000 1.1
--- WebFixture.cs 15 Jan 2004 00:56:58 -0000 1.2
***************
*** 24,28 ****
public void ClickButton(string control)
{
! browser.Page.ClickButton(control);
}
--- 24,29 ----
public void ClickButton(string control)
{
! try { browser.Page.ClickButton(control); }
! catch (Exception ex) { Console.WriteLine(ex.ToString()); throw; }
}
|