Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for testFamily (0.26 sec)

  1. platforms/documentation/docs/src/snippets/java/fixtures/kotlin/src/test/java/com/acme/FamilyTest.java

    package com.acme;
    
    import org.junit.Test;
    import org.apache.commons.lang3.tuple.ImmutablePair;
    import static org.junit.Assert.*;
    import static com.acme.Simpsons.*;
    
    public class FamilyTest {
        @Test
        public void testFamily() {
            Family family = new Family(
                homer(),
                marge(),
                bart(),
                named("elisabeth marie"),
                of(ImmutablePair.of("Margaret Eve", "Simpson"))
            );
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 683 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/java/fixtures/groovy/src/test/java/com/acme/FamilyTest.java

    package com.acme;
    
    import org.junit.Test;
    import org.apache.commons.lang3.tuple.ImmutablePair;
    import static org.junit.Assert.*;
    import static com.acme.Simpsons.*;
    
    public class FamilyTest {
        @Test
        public void testFamily() {
            Family family = new Family(
                homer(),
                marge(),
                bart(),
                named("elisabeth marie"),
                of(ImmutablePair.of("Margaret Eve", "Simpson"))
            );
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 683 bytes
    - Viewed (0)
  3. maven-model-builder/src/test/java/org/apache/maven/model/profile/activation/OperatingSystemProfileActivatorTest.java

            assertActivation(true, profile, newContext(null, newProperties("windows", "6.5.0-1014-aws", "aarch64")));
        }
    
        @Test
        void testFamily() {
            Profile profile = newProfile(ActivationOS.newBuilder().family("windows"));
    
            assertActivation(false, profile, newContext(null, newProperties("linux", "6.5.0-1014-aws", "amd64")));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 05 14:16:41 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top