Giter Club home page Giter Club logo

Comments (4)

nochso avatar nochso commented on July 26, 2024 1

How about an interface? Check for this interface when encountering structs and if it's implemented, call Fake.

type Faker interface {
    // Fake your own struct.
    Fake() error
}

Mail addresses or phone numbers are good examples because they should look a certain way.

type Mail string

func (m *Mail) Fake() error {
    m = "[email protected]"
    return nil
}

from faker.

bxcodec avatar bxcodec commented on July 26, 2024

Can you provide some of explanation, please ? Some example, or something.

Currently, faker only support for some native types, and a non Pointer of Struct type.

For example :

type Another struct {
   Other string 
}
type Something struct {
   Another
   SomeField int 
}
 type Sample struct {
  SampleID int 
  SomethingObj Something
}

from faker.

bxcodec avatar bxcodec commented on July 26, 2024

@nochso
Cool.
I would appreciate for the pull request rather than a code snippet. Thanks

from faker.

bxcodec avatar bxcodec commented on July 26, 2024

Add new function here #5

Still need more example of data that already has a fixed pattern.
Maybe you could list more here LOL :D
So we can add the function

from faker.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.