AUT.Configure.CrmWeb 1.0.6

There is a newer version of this package available.
See the version list below for details.
dotnet add package AUT.Configure.CrmWeb --version 1.0.6
NuGet\Install-Package AUT.Configure.CrmWeb -Version 1.0.6
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="AUT.Configure.CrmWeb" Version="1.0.6" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AUT.Configure.CrmWeb --version 1.0.6
#r "nuget: AUT.Configure.CrmWeb, 1.0.6"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install AUT.Configure.CrmWeb as a Cake Addin
#addin nuget:?package=AUT.Configure.CrmWeb&version=1.0.6

// Install AUT.Configure.CrmWeb as a Cake Tool
#tool nuget:?package=AUT.Configure.CrmWeb&version=1.0.6

Introduction

This package contains generic helper method to configure any project. It doesn't contain any business logic.

AUT.Configure.CrmWeb

This package is specially designed to configure Aurea CRM Web Project's Automatic Unit Tests.

Release Notes

  • Initial release from existing version.
  • Removed Generic Test case attribute.
  • Converted project to .NET 4.5.1

Code Examples

Few sample code examples to use it in the bootstrapping.

Class Inherit Example

 [TestFixture]
 public class GenericTestClass : AbstractBaseSetupV2Test
 {
    // Initialize basic stuff in the base class.
    public GenericTestClass() : base(type(ObjectTypeTesting))
    {}

    [Test]
    public void TestMethodExample()
    {
        // Arrange
        var anyType = this.CreateType<Type>();
        var testingClassInstance = this.Create();

        // Act
        ... Acting stuff.

        // Assert
        anyType.ShouldNotBeNull();
        testingClassInstance.ShouldNotBeNull();
    }
 }

Explore function

Explore existing methods in the ShouldlyExtension.

ShouldlyExtension.ExploreMethodWithBaseClass(this, "PrivateMethodName"); // Explore private mehtods.
Product Compatible and additional computed target framework versions.
.NET Framework net451 is compatible.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.4.0 963 11/21/2018
2.3.0 832 11/21/2018
2.2.0 861 10/29/2018
2.1.0 808 10/16/2018
2.0.0 868 10/16/2018
1.5.0 882 9/12/2018
1.3.1 878 8/25/2018
1.3.0 915 8/25/2018
1.0.6 928 8/24/2018
1.0.5 969 8/24/2018
1.0.4 925 8/24/2018
1.0.2 940 8/24/2018
1.0.1 893 8/24/2018
1.0.0 898 8/24/2018

- Targeted for .NET 4.5.1 and now compatible with .NET 4.5.1

- Removed Generic Test Case attribute.