public async Task CreateCustomerUsingPostWithHttpMessagesAsync_StateUnderTest_ExpectedBehavior()
        {
            // Arrange
            var kimai2APIDocs     = this.CreateKimai2APIDocs();
            CustomerEditForm body = null;
            Dictionary <string, List <string> > customHeaders = null;
            CancellationToken cancellationToken = default(global::System.Threading.CancellationToken);

            // Act
            var result = await kimai2APIDocs.CreateCustomerUsingPostWithHttpMessagesAsync(
                body,
                customHeaders,
                cancellationToken);

            // Assert
            Assert.True(false);
        }
Example #2
0
        private void ClickCustomerEditBtn(object sender, EventArgs e)
        {
            CustomerEditForm form = new CustomerEditForm();

            form.Show();
        }