Skip to content

Instantly share code, notes, and snippets.

View gittadesushil's full-sized avatar
🎯
Focusing

TestFirst gittadesushil

🎯
Focusing
View GitHub Profile
InternalTrace: Initializing at level Debug
17:08:51.968 Info [ 1] NUnitTestAgent: Agent process 123016 starting
17:08:51.975 Info [ 1] NUnitTestAgent: Running under version 4.0.30319.42000, .NET 4.5
17:08:51.975 Debug [ 1] NUnitTestAgent: Agent process has the COMPLUS_Version environment variable value "NULL" overridden with "v4.0.30319", restoring the original value.
17:08:51.977 Debug [ 1] ServiceManager: Added ExtensionService
17:08:51.977 Debug [ 1] ServiceManager: Added DomainManager
17:08:51.977 Debug [ 1] ServiceManager: Added InProcessTestRunnerFactory
17:08:51.977 Debug [ 1] ServiceManager: Added DriverService
17:08:51.978 Info [ 1] NUnitTestAgent: Initializing Services
17:08:51.979 Info [ 1] ServiceManager: Initializing ExtensionService
InternalTrace: Initializing at level Debug
17:08:52.361 Debug [ 5] DefaultTestAssemblyBuilder: Loading C:\product\demo\Com.company.FMC.TestSuites.dll in AppDomain domain-
17:08:52.367 Debug [ 5] DefaultTestAssemblyBuilder: Examining assembly for test fixtures
17:08:52.369 Debug [ 5] DefaultTestAssemblyBuilder: Found 13 classes to examine
17:08:52.426 Debug [ 5] DefaultTestAssemblyBuilder: Found 7 fixtures with 34 test cases
17:08:52.500 Info [ 5] DefaultTestAssemblyRunner: Running tests
17:08:52.504 Info [ 5] Dispatcher: Initializing with 12 workers
17:08:52.508 Debug [ 5] WorkShift: Parallel shift adding queue ParallelQueue
17:08:52.508 Debug [ 5] WorkShift: Parallel shift adding queue ParallelSTAQueue
17:08:52.508 Debug [ 5] WorkShift: NonParallel shift adding queue NonParallelQueue
@gittadesushil
gittadesushil / InternalTrace.13380.log
Created January 30, 2020 22:35
nunit3-console.exe --trace=Debug log
InternalTrace: Initializing at level Debug
17:08:51.696 Debug [ 1] ServiceManager: Added SettingsService
17:08:51.696 Debug [ 1] ServiceManager: Added RecentFilesService
17:08:51.697 Debug [ 1] ServiceManager: Added TestFilterService
17:08:51.697 Debug [ 1] ServiceManager: Added ExtensionService
17:08:51.697 Debug [ 1] ServiceManager: Added ProjectService
17:08:51.697 Debug [ 1] ServiceManager: Added DomainManager
17:08:51.697 Debug [ 1] ServiceManager: Added RuntimeFrameworkService
17:08:51.698 Debug [ 1] ServiceManager: Added TestAgency
17:08:51.698 Debug [ 1] ServiceManager: Added DriverService
@gittadesushil
gittadesushil / websocket exception
Last active August 14, 2019 16:07
websocket exception
System.AggregateException : One or more errors occurred.
----> System.Net.WebSockets.WebSocketException : Unable to connect to the remote server
----> System.Net.WebException : The remote server returned an error: (400) Bad Request.
at System.Threading.Tasks.Task.ThrowIfExceptional(Boolean includeTaskCanceledExceptions)
at System.Threading.Tasks.Task`1.GetResultCore(Boolean waitCompletionNotification)
at Com.organization.Plugin.Platform.KubeCtl.Pod.PortForward(String podName, Int32[] originalPort, Int32 forwardPort)
at Com.organization.Plugin.Platform.KubeCtl.Tests.VerifyPortForward()
--WebSocketException
at System.Net.WebSockets.ClientWebSocket.<ConnectAsyncCore>d__21.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<IsPackable>false</IsPackable>
<AssemblyName>Com.SFP.Tests</AssemblyName>
<RootNamespace>Com.SFP.Tests</RootNamespace>
<OutputPath>$(SolutionDir)Output\Tests\</OutputPath>
</PropertyGroup>
public class ItemRepresentation : Representation
{
[JsonProperty(propertyName: "Id")]
public Guid Id { get; set; }
[JsonProperty(PropertyName = "itemlines")]
public List<ItemLinesRepresentation> ItemLines { get; set; }
public override string Rel
{
@gittadesushil
gittadesushil / error_while_regenerate.txt
Created April 1, 2019 08:41
Unable to find plugin in the plugin search path
We could not find a data exchange file at the path TechTalk.SpecFlow.SpecFlowException: Unable to find plugin in the plugin search path: Com.Org.SFP.CustomNUnitProperties. Please check http://go.specflow.org/doc-plugins for details.
Please open an issue at https://github.com/techtalk/SpecFlow/issues/
Complete output:
TechTalk.SpecFlow.SpecFlowException: Unable to find plugin in the plugin search path: Com.Org.SFP.CustomNUnitProperties. Please check http://go.specflow.org/doc-plugins for details.
at TechTalk.SpecFlow.Generator.Plugins.GeneratorPluginLoader.LoadPlugin(PluginDescriptor pluginDescriptor)
at TechTalk.SpecFlow.Generator.GeneratorContainerBuilder.LoadPlugin(PluginDescriptor pluginDescriptor, IGeneratorPluginLoader pluginLoader, GeneratorPluginEvents generatorPluginEvents)
at TechTalk.SpecFlow.Generator.GeneratorContainerBuilder.LoadPlugins(ObjectContainer container, IGeneratorConfigurationProvider configurationProvider, SpecFlowConfigurationHolder configurationHolder, GeneratorPluginEvent
@gittadesushil
gittadesushil / projSFP.csproj
Created March 27, 2019 09:56
SFP.csproj file content
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net45</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<RootNamespace>Com.Org.SFP.CustomNUnitProperties.SpecFlow</RootNamespace>
<AssemblyName>Com.Org.SFP.CustomNUnitProperties.SpecFlow.2.4.SpecFlowPlugin</AssemblyName>
<PackageId>$(AssemblyName)</PackageId>
<Description>$(PackageId)</Description>
<OutputPath>$(SolutionDir)Output\</OutputPath>
@gittadesushil
gittadesushil / projCommons.csproj
Created March 27, 2019 09:54
commons project .csproj content
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net45</TargetFramework>
<Configurations>Debug;Release;Pack</Configurations>
<RootNamespace>Com.Org.Commons</RootNamespace>
<AssemblyName>Com.Org.Commons</AssemblyName>
<PackageId>$(AssemblyName)</PackageId>
<Description>$(PackageId)</Description>
<OutputPath>$(SolutionDir)Output\</OutputPath>
@gittadesushil
gittadesushil / SFP.csproj
Created March 25, 2019 15:11
SFP.csproj file content
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net45</TargetFramework>
<RootNamespace>Com.Org.SFP.CustomNUnitProperties.SpecFlow</RootNamespace>
<AssemblyName>Com.Org.SFP.CustomNUnitProperties.SpecFlow.2.4.SpecFlowPlugin</AssemblyName>
<PackageId>$(AssemblyName)</PackageId>
<Description>$(PackageId)</Description>
<OutputPath>$(SolutionDir)Output\</OutputPath>
<DocumentationFile></DocumentationFile>