5

Well, I am not going to say what falls in functional/non-functional testing as it might vary in your work place. But if you carry out a11y testing then do you have it marked as functional testing or non functional testing?

Tarun
  • 3,437
  • 2
  • 30
  • 43
  • 2
    In your shop, does it matter in which category Accessibility Testing in placed? Is it funded or staffed differently? – Joe Strazzere Jul 11 '11 at 12:00
  • I do not understand the point of this question. It would help for the question to explain why the categorization matters. –  Jul 23 '11 at 15:48
  • looks like that is another question!!! – Tarun Jul 24 '11 at 05:06

6 Answers6

3

I think that it would depend on the industry and the deployment of the application as to how you treat it. For example, it may be irrelevant for an internal only tool, but completely relevant if you are the website of the Olympic Games and don't want to get sued.

(The Sydney 2000 Organising Committee lost a lawsuit for failing to cater for users who could not access a visual version of the Sydney 2000 Olympic Games website.)

Like Jeff Atwood treats performance (as a feature) I would treat it like a feature, and test it as such.

Bruce McLeod
  • 9,750
  • 5
  • 33
  • 73
3

In traditional models, accessibility falls under non-functional testing; however, because in commercial software accessibility often falls under legal or regulatory requirements it may also be considered functional but, not all software is commercial software or needs to comply with governmental regulations

I like the following definitions from http://www.lessons-from-history.com/node/83 "a functional requirement specifies what the system should do" "a non-functional requirement specifies how the system should behave"

Bj Rollison
  • 5,187
  • 16
  • 23
2

Objective of Accessibility Testing is to ensure the application / website being tested are usable by people with disabilities which falls under functional testing. I guess it should be considered as functional testing.

likitha
  • 309
  • 2
  • 5
  • If the site is not accessible to someone, its functionality is worthless to them, so I would argue that it is functional. – TomG Jul 13 '11 at 01:58
0

I think its for this exact reason that Cem Kaner came up with the term "Para-functional Testing"

Some discussion on it here & here & here

DuncN
  • 806
  • 4
  • 7
0

Functional testing deals with checking the functionality of a system or application works as expected. You give certain inputs and check whether you get the expected output. You will usually use some sort of heuristic to tell whether result is expected or not.

Non Functional testing deals with checking the non-functional aspects of systems such as performance, reliability, scalability, usability etc.

Accessibility testing is about evaluating how accessible/usable a product is to people who have Motor, Cognitive, Visual or Hearing impairments to some extent. To ensure an application is accessible the UI design is really important. Also the application should compatible with accessibility standards set forth by [Web Content Accessibility Guidelines 2.0][1] which include things beyond just the UI.

So, I would say that accessibility testing cuts across both functional and non-functional testing.

-Raj

Niels van Reijmersdal
  • 32,520
  • 4
  • 57
  • 124
0

Before doing Accessibility testing we need to know functional requirements for example error message scenarios, but the outcome of the accessibility testing will be pass or fail based WCAG guidelines. Ex: Error message is displayed but it does not announced by any assistive technology. The above example fails under Input assistance WCAG guidelines. So it will be the Non functional testing.