# S - Scenario

It's the second section in the [name](https://blog.fiftywords.co/use).

It specifies which case we're going to verify in the [test](https://blog.fiftywords.co/unit-test) including the details that make it relevant.

```ts
/** In this example the three sections of the name are in the same text.
 * Airplane is the Unit under test
 * The xxx refer to the other section
 */
test("Airplane, takeOff without parameters, xxx", () => {});

/** In this example the first section of the test name is in a group
 * because there will be multiple tests on the same unit.
 * The xxx refer to the other sections
 */
group("Airplane", () => {
  group("takeOff without parameters, xxx", ()=>);
  
  test("takeOff with isRaining parameter set to true, xxx", () => {});
});
```

[🇨🇴 Versión en Español](https://blog.cincuentapalabras.co/use-situacion)
