Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/27/10 09:37:34 (13 years ago)
Author:
jhaider
Message:

added TestWebService #1197

Location:
branches/ClientManagement/HeuristicLab.Services.Authentication
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/ClientManagement/HeuristicLab.Services.Authentication/HeuristicLab.Services.Authentication.sln

    r4732 r4958  
    1010Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Test", "Test\Test.csproj", "{D83C93B5-5DDE-4A66-A9B8-D7FD0A891ABB}"
    1111EndProject
     12Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestWebService", "TestWebService\TestWebService.csproj", "{01C496AF-00BE-4C51-9AA1-A9EBBE780003}"
     13EndProject
     14Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{762DA386-BCEE-4788-A676-A7883FBA3D28}"
     15  ProjectSection(SolutionItems) = preProject
     16    HeuristicLab.Services.Authentication.vsmdi = HeuristicLab.Services.Authentication.vsmdi
     17    Local.testsettings = Local.testsettings
     18    TraceAndTestImpact.testsettings = TraceAndTestImpact.testsettings
     19  EndProjectSection
     20EndProject
    1221Global
     22  GlobalSection(TestCaseManagementSettings) = postSolution
     23    CategoryFile = HeuristicLab.Services.Authentication.vsmdi
     24  EndGlobalSection
    1325  GlobalSection(SolutionConfigurationPlatforms) = preSolution
    1426    Debug|Any CPU = Debug|Any CPU
     
    6072    {D83C93B5-5DDE-4A66-A9B8-D7FD0A891ABB}.Release|x86.ActiveCfg = Release|x86
    6173    {D83C93B5-5DDE-4A66-A9B8-D7FD0A891ABB}.Release|x86.Build.0 = Release|x86
     74    {01C496AF-00BE-4C51-9AA1-A9EBBE780003}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
     75    {01C496AF-00BE-4C51-9AA1-A9EBBE780003}.Debug|Any CPU.Build.0 = Debug|Any CPU
     76    {01C496AF-00BE-4C51-9AA1-A9EBBE780003}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
     77    {01C496AF-00BE-4C51-9AA1-A9EBBE780003}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
     78    {01C496AF-00BE-4C51-9AA1-A9EBBE780003}.Debug|x86.ActiveCfg = Debug|Any CPU
     79    {01C496AF-00BE-4C51-9AA1-A9EBBE780003}.Release|Any CPU.ActiveCfg = Release|Any CPU
     80    {01C496AF-00BE-4C51-9AA1-A9EBBE780003}.Release|Any CPU.Build.0 = Release|Any CPU
     81    {01C496AF-00BE-4C51-9AA1-A9EBBE780003}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
     82    {01C496AF-00BE-4C51-9AA1-A9EBBE780003}.Release|Mixed Platforms.Build.0 = Release|Any CPU
     83    {01C496AF-00BE-4C51-9AA1-A9EBBE780003}.Release|x86.ActiveCfg = Release|Any CPU
    6284  EndGlobalSection
    6385  GlobalSection(SolutionProperties) = preSolution
  • branches/ClientManagement/HeuristicLab.Services.Authentication/Test/Program.cs

    r4953 r4958  
    1717            DA.ClientManagmentDataContext dc = new DA.ClientManagmentDataContext();
    1818
    19             if (dc.DatabaseExists())
    20             {
    21                 Console.WriteLine("DB exsits");
    22                 dc.DeleteDatabase();
    23                 dc.SubmitChanges();
    24                 Console.WriteLine("DB deleted");
    25             }
    26             Console.WriteLine("DB create");
    27             dc.CreateDatabase();
    28             dc.SubmitChanges();
    29             Console.WriteLine("Finished");
     19            //if (dc.DatabaseExists())
     20            //{
     21            //    Console.WriteLine("DB exsits");
     22            //    dc.DeleteDatabase();
     23            //    dc.SubmitChanges();
     24            //    Console.WriteLine("DB deleted");
     25            //}
     26            //Console.WriteLine("DB create");
     27            //dc.CreateDatabase();
     28            //dc.SubmitChanges();
     29            //Console.WriteLine("Finished");
    3030
    3131            ClientService cs = new ClientService();
  • branches/ClientManagement/HeuristicLab.Services.Authentication/TestWebService/TestWebService.csproj

    r4953 r4958  
    77    </ProductVersion>
    88    <SchemaVersion>2.0</SchemaVersion>
    9     <ProjectGuid>741f1630-a465-47ad-979b-0a15847bd4bd</ProjectGuid>
     9    <ProjectGuid>{01C496AF-00BE-4C51-9AA1-A9EBBE780003}</ProjectGuid>
    1010    <OutputType>Library</OutputType>
    1111    <AppDesignerFolder>Properties</AppDesignerFolder>
     
    3434  </PropertyGroup>
    3535  <ItemGroup>
     36    <Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
    3637    <Reference Include="System" />
    3738    <Reference Include="System.Core">
     
    4647  <ItemGroup>
    4748    <Compile Include="Properties\AssemblyInfo.cs" />
     49    <Compile Include="TestWebServiec.cs" />
     50  </ItemGroup>
     51  <ItemGroup>
     52    <ProjectReference Include="..\HeuristicLab.Services.Authentication\HeuristicLab.Services.Authentication.csproj">
     53      <Project>{ED8DC6E8-57C6-49E0-8CDF-25703AC52350}</Project>
     54      <Name>HeuristicLab.Services.Authentication</Name>
     55    </ProjectReference>
    4856  </ItemGroup>
    4957  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
Note: See TracChangeset for help on using the changeset viewer.