FluentLenium/FluentLenium

View on GitHub
fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java

Summary

Maintainability
D
2 days
Test Coverage

FluentWebElementAssertTest has 63 methods (exceeds 20 allowed). Consider refactoring.
Open

public class FluentWebElementAssertTest {
    @Mock
    private FluentWebElement element;
    private FluentWebElementAssert elementAssert;

    File FluentWebElementAssertTest.java has 391 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    package io.fluentlenium.assertj.custom;
    
    import io.fluentlenium.assertj.FluentLeniumAssertions;
    import io.fluentlenium.core.domain.FluentWebElement;
    import org.mockito.Mock;

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

          @Test
          public void testHasNoRaceConditionInHasText() {
              String textToFind = "someText";
              String firstActualText = "someOtherText";
      
      
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 444..457

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 71.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

          @Test
          public void testHasNoRaceConditionInHasTextContaining() {
              String textToFind = "someText";
              String firstActualText = "someOtherText";
      
      
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 429..442

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 71.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 8 locations. Consider refactoring.
      Open

          @Test
          public void testIsNotEnabledKo() {
              when(element.present()).thenReturn(true);
              when(element.enabled()).thenReturn(true);
              assertThatAssertionErrorIsThrownBy(() -> elementAssert.isNotEnabled())
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 38..44
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 68..74
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 83..89
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 124..130
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 139..145
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 154..160
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 169..175

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 43.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 8 locations. Consider refactoring.
      Open

          @Test
          public void testIsDisplayedKo() {
              when(element.present()).thenReturn(true);
              when(element.displayed()).thenReturn(false);
              assertThatAssertionErrorIsThrownBy(() -> elementAssert.isDisplayed())
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 38..44
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 53..59
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 68..74
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 83..89
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 139..145
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 154..160
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 169..175

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 43.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 8 locations. Consider refactoring.
      Open

          @Test
          public void testIsNotSelectedKo() {
              when(element.present()).thenReturn(true);
              when(element.selected()).thenReturn(true);
              assertThatAssertionErrorIsThrownBy(() -> elementAssert.isNotSelected())
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 38..44
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 53..59
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 68..74
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 83..89
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 124..130
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 139..145
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 169..175

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 43.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 8 locations. Consider refactoring.
      Open

          @Test
          public void testIsNotClickableKo() {
              when(element.present()).thenReturn(true);
              when(element.clickable()).thenReturn(true);
              assertThatAssertionErrorIsThrownBy(() -> elementAssert.isNotClickable())
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 38..44
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 53..59
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 68..74
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 124..130
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 139..145
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 154..160
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 169..175

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 43.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 8 locations. Consider refactoring.
      Open

          @Test
          public void testIsNotDisplayedKo() {
              when(element.present()).thenReturn(true);
              when(element.displayed()).thenReturn(true);
              assertThatAssertionErrorIsThrownBy(() -> elementAssert.isNotDisplayed())
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 38..44
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 53..59
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 68..74
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 83..89
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 124..130
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 154..160
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 169..175

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 43.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 8 locations. Consider refactoring.
      Open

          @Test
          public void testIsClickableKo() {
              when(element.present()).thenReturn(true);
              when(element.clickable()).thenReturn(false);
              assertThatAssertionErrorIsThrownBy(() -> elementAssert.isClickable())
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 38..44
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 53..59
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 83..89
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 124..130
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 139..145
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 154..160
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 169..175

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 43.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 8 locations. Consider refactoring.
      Open

          @Test
          public void testIsEnabledKo() {
              when(element.present()).thenReturn(true);
              when(element.enabled()).thenReturn(false);
              assertThatAssertionErrorIsThrownBy(() -> elementAssert.isEnabled())
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 53..59
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 68..74
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 83..89
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 124..130
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 139..145
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 154..160
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 169..175

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 43.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 8 locations. Consider refactoring.
      Open

          @Test
          public void testIsSelectedKo() {
              when(element.present()).thenReturn(true);
              when(element.selected()).thenReturn(false);
              assertThatAssertionErrorIsThrownBy(() -> elementAssert.isSelected())
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 38..44
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 53..59
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 68..74
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 83..89
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 124..130
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 139..145
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 154..160

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 43.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

          @Test
          public void shouldFailWhenContainsClasses() {
              when(element.attribute("class")).thenReturn("clazz clazz2 clazz3");
              assertThatAssertionErrorIsThrownBy(() -> elementAssert.hasNotClasses("clazz2", "clazz3"))
                      .hasMessage("The element has the classes: [clazz2, clazz3]. "
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 329..335

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 41.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

          @Test
          public void shouldFailWhenDoesntHaveAllClasses() {
              when(element.attribute("class")).thenReturn("clazz clazz2 clazz3");
              assertThatAssertionErrorIsThrownBy(() -> elementAssert.hasClasses("clazz", "clazz5"))
                      .hasMessage("The element does not have all classes: [clazz, clazz5]. "
      fluentlenium-assertj/src/test/java/io/fluentlenium/assertj/custom/FluentWebElementAssertTest.java on lines 348..354

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 41.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Name 'io.fluentlenium.assertj.custom' must match pattern '^org.[a-z]+(.[a-zA-Z_][a-zA-Z0-9_]*)*$'.
      Open

      package io.fluentlenium.assertj.custom;

      Checks that package names conform to a specified pattern.

      The default value of format for module PackageName has beenchosen to match the requirements in the JavaLanguage specification and the Sun coding conventions. Howeverboth underscores and uppercase letters are rather uncommon, so mostconfigurations should probably assign value ^[a-z]+(\.[a-z][a-z0-9]*)*$ toformat for module PackageName.

      This documentation is written and maintained by the Checkstyle community and is covered under the same license as the Checkstyle project.

      There are no issues that match your filters.

      Category
      Status