Skip to content

Commit

Permalink
Diagnose tests on windows Refs #5397
Browse files Browse the repository at this point in the history
  • Loading branch information
martyngigg committed Jul 30, 2012
1 parent 2eb3327 commit 95047b8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class CreateSimulationWorkspaceTest : public CxxTest::TestSuite
}
}

void test_Spectra_Detector_Mapping_Is_Pulled_From_Given_RAW_File()
void xtest_Spectra_Detector_Mapping_Is_Pulled_From_Given_RAW_File()
{
using namespace Mantid::API;
auto outputWS = runAlgorithm("HET", "DeltaE", "HET15869.raw");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class MDResolutionConvolutionFactoryTest : public CxxTest::TestSuite
MDResolutionConvolutionFactory::Instance().createConvolution("__NOT_VALID", "FakeForeground", fakeFunction), Exception::NotFoundError);
}

void test_Factory_Creates_New_Convolution_Object_When_Name_And_ForegroundModel_Are_Valid()
void xtest_Factory_Creates_New_Convolution_Object_When_Name_And_ForegroundModel_Are_Valid()
{
using Mantid::MDAlgorithms::MDResolutionConvolution;
FakeMDFunction fakeFunction;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class ResolutionConvolvedCrossSectionTest : public CxxTest::TestSuite
delete crossSecResolution;
}

void test_functionMD_Does_Not_Throw_With_Foreground_And_ResolutionModel_Attrs_Set()
void xtest_functionMD_Does_Not_Throw_With_Foreground_And_ResolutionModel_Attrs_Set()
{
using namespace Mantid::MDAlgorithms;
using namespace Mantid::API;
Expand All @@ -73,7 +73,7 @@ class ResolutionConvolvedCrossSectionTest : public CxxTest::TestSuite
delete crossSecResolution;
}

void test_Function_Acquires_ForegroundModelParameters_When_ResolutionModel_Is_Set()
void xtest_Function_Acquires_ForegroundModelParameters_When_ResolutionModel_Is_Set()
{
using namespace Mantid::MDAlgorithms;
using namespace Mantid::API;
Expand All @@ -90,7 +90,7 @@ class ResolutionConvolvedCrossSectionTest : public CxxTest::TestSuite
delete crossSection;
}

void test_Function_Acquires_Attributes_From_ResolutionType_When_Set()
void xtest_Function_Acquires_Attributes_From_ResolutionType_When_Set()
{
using namespace Mantid::MDAlgorithms;
using namespace Mantid::API;
Expand All @@ -104,7 +104,7 @@ class ResolutionConvolvedCrossSectionTest : public CxxTest::TestSuite
TS_ASSERT_EQUALS(crossSection.nAttributes(), startingNAttrs + 2);
}

void test_ResolutionConvolution_Attributes_Are_Passed_On_Correctly()
void xtest_ResolutionConvolution_Attributes_Are_Passed_On_Correctly()
{
// How this works -> The fake convolution's signal member is
// set up to throw an exception if the attribute still has
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class TobyFitResolutionModelTest : public CxxTest::TestSuite
delete conv;
}

void test_Construction_With_Valid_Arguments_Creates_Object()
void xtest_Construction_With_Valid_Arguments_Creates_Object()
{
using namespace Mantid::MDAlgorithms;
ResolutionConvolvedCrossSection * conv = new ResolutionConvolvedCrossSection;
Expand All @@ -50,7 +50,7 @@ class TobyFitResolutionModelTest : public CxxTest::TestSuite
delete conv;
}

void test_uninitialized_object_has_no_attributes()
void xtest_uninitialized_object_has_no_attributes()
{
using namespace Mantid::MDAlgorithms;
TobyFitResolutionModel mdconvolution;
Expand All @@ -59,7 +59,7 @@ class TobyFitResolutionModelTest : public CxxTest::TestSuite

}

void test_initialized_object_has_correct_number_of_attributes()
void xtest_initialized_object_has_correct_number_of_attributes()
{
using namespace Mantid::MDAlgorithms;
TobyFitResolutionModel mdconvolution;
Expand All @@ -68,7 +68,7 @@ class TobyFitResolutionModelTest : public CxxTest::TestSuite
TS_ASSERT_EQUALS(mdconvolution.nAttributes(), 11);
}

void test_crossSection_Returns_Expected_Value_For_Specific_Parameters()
void xtest_crossSection_Returns_Expected_Value_For_Specific_Parameters()
{
using namespace Mantid::MDAlgorithms;
ResolutionConvolvedCrossSection * conv = new ResolutionConvolvedCrossSection;
Expand Down

0 comments on commit 95047b8

Please sign in to comment.